diff --git a/include/internal/catch_expression_lhs.hpp b/include/internal/catch_expression_lhs.hpp index 5807aca9..528796cf 100644 --- a/include/internal/catch_expression_lhs.hpp +++ b/include/internal/catch_expression_lhs.hpp @@ -29,45 +29,45 @@ public: template BinaryExpression - operator == ( RhsT const& rhs ) const { + operator == ( RhsT const& rhs ) { return captureExpression( rhs ); } template BinaryExpression - operator != ( RhsT const& rhs ) const { + operator != ( RhsT const& rhs ) { return captureExpression( rhs ); } template BinaryExpression - operator < ( RhsT const& rhs ) const { + operator < ( RhsT const& rhs ) { return captureExpression( rhs ); } template BinaryExpression - operator > ( RhsT const& rhs ) const { + operator > ( RhsT const& rhs ) { return captureExpression( rhs ); } template BinaryExpression - operator <= ( RhsT const& rhs ) const { + operator <= ( RhsT const& rhs ) { return captureExpression( rhs ); } template BinaryExpression - operator >= ( RhsT const& rhs ) const { + operator >= ( RhsT const& rhs ) { return captureExpression( rhs ); } - BinaryExpression operator == ( bool rhs ) const { + BinaryExpression operator == ( bool rhs ) { return captureExpression( rhs ); } - BinaryExpression operator != ( bool rhs ) const { + BinaryExpression operator != ( bool rhs ) { return captureExpression( rhs ); }