Skip to content

Commit

Permalink
Kill a compiler warning about unused exception variable.
Browse files Browse the repository at this point in the history
Refs #8996
  • Loading branch information
martyngigg committed Feb 18, 2014
1 parent d17bd40 commit 5a99e08
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -105,7 +105,7 @@ namespace Mantid
std::string value = boost::python::extract<std::string>(resultDict[keys[i]]);
resultMap[key] = value;
}
catch(boost::python::error_already_set & e)
catch(boost::python::error_already_set &)
{
this->getLogger().error() << "In validateInputs(self): Invalid type for key/value pair "
<< "detected in dict.\n"
Expand Down

0 comments on commit 5a99e08

Please sign in to comment.