Skip to content

Commit

Permalink
Remove default tolerance in equalWithinTolerance
Browse files Browse the repository at this point in the history
Refs #11179
  • Loading branch information
DanNixon committed Mar 2, 2015
1 parent 4486d7c commit 5bbd613
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/inc/MantidAPI/NumericAxis.h
Expand Up @@ -66,7 +66,7 @@ class MANTID_API_DLL NumericAxis : public Axis {
size_t indexOfValue(const double value) const;
virtual bool operator==(const Axis &) const;
virtual bool equalWithinTolerance(const Axis &axis2,
const double tolerance = 0.0) const;
const double tolerance) const;
std::string label(const std::size_t &index) const;
/// Create bin boundaries from the point values
virtual std::vector<double> createBinBoundaries() const;
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/inc/MantidAPI/RefAxis.h
Expand Up @@ -55,7 +55,7 @@ class MANTID_API_DLL RefAxis : public NumericAxis {
virtual void setValue(const std::size_t &index, const double &value);
virtual bool operator==(const Axis &) const;
virtual bool equalWithinTolerance(const Axis &axis2,
const double tolerance = 0.0) const;
const double tolerance) const;
virtual double getMin() const;
virtual double getMax() const;

Expand Down

0 comments on commit 5bbd613

Please sign in to comment.