forked from boostorg/endian
Merge pull request #43 from eldiener/develop
Changes for Embarcadero C++ clang-based compilers, targeting Boost 1.74. Change __BORLANDC__ to BOOST_BORLANDC and __CODEGEARC__ to BOOST_CODE…
This commit is contained in:
@ -36,7 +36,7 @@
|
||||
#include <iosfwd>
|
||||
#include <climits>
|
||||
|
||||
#if defined(__BORLANDC__) || defined( __CODEGEARC__)
|
||||
#if defined(BOOST_BORLANDC) || defined( BOOST_CODEGEARC)
|
||||
# pragma pack(push, 1)
|
||||
#endif
|
||||
|
||||
@ -327,7 +327,7 @@ public:
|
||||
} // namespace endian
|
||||
} // namespace boost
|
||||
|
||||
#if defined(__BORLANDC__) || defined( __CODEGEARC__)
|
||||
#if defined(BOOST_BORLANDC) || defined( BOOST_CODEGEARC)
|
||||
# pragma pack(pop)
|
||||
#endif
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include <climits>
|
||||
#include <cstring>
|
||||
|
||||
#if defined(__BORLANDC__) || defined( __CODEGEARC__)
|
||||
#if defined(BOOST_BORLANDC) || defined( BOOST_CODEGEARC)
|
||||
# pragma pack(push, 1)
|
||||
#endif
|
||||
|
||||
@ -367,7 +367,7 @@ public:
|
||||
} // namespace endian
|
||||
} // namespace boost
|
||||
|
||||
#if defined(__BORLANDC__) || defined( __CODEGEARC__)
|
||||
#if defined(BOOST_BORLANDC) || defined( BOOST_CODEGEARC)
|
||||
# pragma pack(pop)
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user