diff --git a/src/catch2/internal/catch_meta.hpp b/src/catch2/internal/catch_meta.hpp index 7d573585..abb86ab5 100644 --- a/src/catch2/internal/catch_meta.hpp +++ b/src/catch2/internal/catch_meta.hpp @@ -17,9 +17,9 @@ namespace Catch { template struct true_given : std::true_type {}; struct is_callable_tester { template - true_given()(std::declval()...))> static test(int); + static true_given()(std::declval()...))> test(int); template - std::false_type static test(...); + static std::false_type test(...); }; template