Skip to content

Commit

Permalink
refs #5576. Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jul 9, 2012
1 parent 2f82cab commit fc507cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ double NormaliseByCurrent::extractCharge(MatrixWorkspace_sptr inputWS) const
g_log.error() << "The proton charge is not set for the run attached to this workspace\n";
throw;
}
return charge;
}
return charge;
}

void NormaliseByCurrent::exec()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ std::string toString(const std::vector<std::vector<T> >& value)

/// Specialisation for any type, should be appropriate for properties with a single value.
template <typename T>
int findSize(const T& value)
int findSize(const T&)
{
return 1;
}
Expand Down

0 comments on commit fc507cc

Please sign in to comment.