From 1a7226bc0f4d4982788cdf5860757ee6353295e2 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sun, 1 Oct 2017 22:30:59 +0300 Subject: [PATCH] Do not define BOOST_TEST_*E macros, as they are now defined in boost/core/lightweight_test.hpp --- test/type_index_constexpr_test.cpp | 2 -- test/type_index_test.cpp | 3 --- 2 files changed, 5 deletions(-) diff --git a/test/type_index_constexpr_test.cpp b/test/type_index_constexpr_test.cpp index acc55e9..f80fca7 100644 --- a/test/type_index_constexpr_test.cpp +++ b/test/type_index_constexpr_test.cpp @@ -12,8 +12,6 @@ #include #include -#define BOOST_TEST_LE(x, y) BOOST_TEST(x <= y) -#define BOOST_TEST_GE(x, y) BOOST_TEST(x >= y) const char* hello1 = "Hello word"; const char* hello1_end = hello1 + sizeof("Hello word"); diff --git a/test/type_index_test.cpp b/test/type_index_test.cpp index b7925d2..fba6ca1 100644 --- a/test/type_index_test.cpp +++ b/test/type_index_test.cpp @@ -10,9 +10,6 @@ #include #include -#define BOOST_TEST_LE(x, y) BOOST_TEST(x <= y) -#define BOOST_TEST_GE(x, y) BOOST_TEST(x >= y) - namespace my_namespace1 { class my_class{};