From 35a025d59b93bf13939b315d78c8413cde309cd5 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 15 Jun 2020 21:32:50 +0300 Subject: [PATCH] Untabify lightweight_test_with_fail --- test/lightweight_test_with_fail.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()