Change __BORLANDC__ to BOOST_BORLANDC, which is defined in Boost config for the Embarcadero non-clang-based compilers. (#20)

This commit is contained in:
Edward Diener
2020-04-16 10:52:10 -04:00
committed by GitHub
parent 832731f5ab
commit 1a0a89c5bd

View File

@ -30,7 +30,7 @@ namespace detail {
*/
struct indeterminate_t
{
#if BOOST_WORKAROUND(__BORLANDC__, < 0x0600)
#if BOOST_WORKAROUND(BOOST_BORLANDC, < 0x0600)
char dummy_; // BCB would use 8 bytes by default
#endif
};