Do not define BOOST_TEST_*E macros, as they are now defined in boost/core/lightweight_test.hpp

This commit is contained in:
Antony Polukhin
2017-10-01 22:30:59 +03:00
parent be08eda196
commit 1a7226bc0f
2 changed files with 0 additions and 5 deletions

View File

@ -12,8 +12,6 @@
#include <string>
#include <boost/core/lightweight_test.hpp>
#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");

View File

@ -10,9 +10,6 @@
#include <boost/lexical_cast.hpp>
#include <boost/core/lightweight_test.hpp>
#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{};