Skip to content

Commit

Permalink
C++11 syntax fixes for ICat. refs #6592
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Feb 19, 2013
1 parent d4ff809 commit 526dd6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/ICat/src/CatalogLogin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Mantid
/// Init method to declare algorithm properties
void CatalogLogin::init()
{
auto requireValue = boost::make_shared<Kernel::MandatoryValidator<std::string>>();
auto requireValue = boost::make_shared<Kernel::MandatoryValidator<std::string> >();
declareProperty("Username","", requireValue,"The name/federal ID of the logged in user");
declareProperty(new MaskedProperty<std::string>("Password","", requireValue),
"The password of the logged in user ");
Expand Down

0 comments on commit 526dd6c

Please sign in to comment.