Skip to content

Commit

Permalink
Re #9199. Fixing compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Mar 31, 2014
1 parent 7dc6e57 commit ebedfb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Code/Mantid/Framework/CurveFitting/src/MultiDomainCreator.cpp
Expand Up @@ -125,6 +125,9 @@ namespace CurveFitting
const std::string& outputWorkspacePropertyName
)
{
UNUSED_ARG(domain);
UNUSED_ARG(values);

auto mdFunction = boost::dynamic_pointer_cast<API::MultiDomainFunction>(function);
if ( !mdFunction )
{
Expand Down
Expand Up @@ -32,7 +32,7 @@ class MultiDomainCreatorTest_Fun: public IFunction1D, public ParamFunction
size_t m_wsIndex;
std::string name()const {return "MultiDomainCreatorTest_Fun";}
void function1D(double* , const double* , const size_t )const{}
void setMatrixWorkspace(boost::shared_ptr<const API::MatrixWorkspace> workspace,size_t wi,double startX, double endX)
void setMatrixWorkspace(boost::shared_ptr<const API::MatrixWorkspace>,size_t wi,double, double)
{
m_wsIndex = wi;
}
Expand Down

0 comments on commit ebedfb0

Please sign in to comment.