Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Apr 28, 2017
1 parent 3dea84d commit 5bf5ebf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/math/ChebyshevBoundedField.cc
Original file line number Diff line number Diff line change
Expand Up @@ -430,9 +430,9 @@ bool ChebyshevBoundedField::operator==(BoundedField const& rhs) const {
auto rhsCasted = dynamic_cast<ChebyshevBoundedField const *>(&rhs);
if (!rhsCasted) return false;

return (getBBox() == rhsCasted.getBBox()) &&
(_coefficients.getShape() == rhsCasted._coefficients.getShape()) &&
all(equal(_coefficients, rhsCasted._coefficients));
return (getBBox() == rhsCasted->getBBox()) &&
(_coefficients.getShape() == rhsCasted->_coefficients.getShape()) &&
all(equal(_coefficients, rhsCasted->_coefficients));
}

std::string ChebyshevBoundedField::toString() const {
Expand Down

0 comments on commit 5bf5ebf

Please sign in to comment.