From 865cb399d5def15a5b146b56a2486ddcc9aa559f Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Thu, 30 Apr 2020 17:26:21 -0400 Subject: [PATCH] Change __CODEGEARC__ to BOOST_CODEGEARC, which is defined in Boost config for the Embarcadero non-clang-based compilers. (#32) --- test/diagnostic_information_test.cpp | 2 +- test/unknown_exception_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/diagnostic_information_test.cpp b/test/diagnostic_information_test.cpp index 35eb5e8..74d8cd1 100644 --- a/test/diagnostic_information_test.cpp +++ b/test/diagnostic_information_test.cpp @@ -8,7 +8,7 @@ #include #include -#if BOOST_WORKAROUND(__CODEGEARC__, BOOST_TESTED_AT(0x610)) +#if BOOST_WORKAROUND(BOOST_CODEGEARC, BOOST_TESTED_AT(0x610)) struct test_tag1 {}; struct test_tag2 {}; #endif diff --git a/test/unknown_exception_test.cpp b/test/unknown_exception_test.cpp index 8bed4c6..749052f 100644 --- a/test/unknown_exception_test.cpp +++ b/test/unknown_exception_test.cpp @@ -9,7 +9,7 @@ #include #include -#if BOOST_WORKAROUND(__CODEGEARC__, BOOST_TESTED_AT(0x610)) +#if BOOST_WORKAROUND(BOOST_CODEGEARC, BOOST_TESTED_AT(0x610)) struct tag_test {}; #endif