diff --git a/test/lightweight_test_with_fail.cpp b/test/lightweight_test_with_fail.cpp index 76ae0cb..4583c2c 100644 --- a/test/lightweight_test_with_fail.cpp +++ b/test/lightweight_test_with_fail.cpp @@ -13,17 +13,17 @@ template struct with_tolerance { with_tolerance( T tolerance ): tolerance( tolerance ) - { - } + { + } - bool operator()( T lhs, T rhs ) const + bool operator()( T lhs, T rhs ) const { return std::abs( lhs - rhs ) <= tolerance; } private: - T tolerance; + T tolerance; }; void test_tolerance_predicate()