diff options
Diffstat (limited to 'src/unittests/doctest.h')
-rw-r--r-- | src/unittests/doctest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unittests/doctest.h b/src/unittests/doctest.h index 3642c2768..c7a745bb0 100644 --- a/src/unittests/doctest.h +++ b/src/unittests/doctest.h @@ -1311,7 +1311,7 @@ namespace detail { // clang-format off template <int, class L, class R> struct RelationalComparator { bool operator()(const DOCTEST_REF_WRAP(L), const DOCTEST_REF_WRAP(R) ) const { return false; } }; - + #define DOCTEST_BINARY_RELATIONAL_OP(n, op) \ template <class L, class R> struct RelationalComparator<n, L, R> { bool operator()(const DOCTEST_REF_WRAP(L) lhs, const DOCTEST_REF_WRAP(R) rhs) const { return op(lhs, rhs); } }; // clang-format on |