Move version check to the front.

This commit is contained in:
Edward Diener
2020-04-05 17:30:25 -04:00
parent 2c70a870d9
commit 221273f1a0

View File

@ -9,6 +9,17 @@
// CodeGear C++ compiler setup: // CodeGear C++ compiler setup:
//
// versions check:
// last known and checked version is 0x740
#if (__CODEGEARC__ > 0x740)
# if defined(BOOST_ASSERT_CONFIG)
# error "boost: Unknown compiler version - please run the configure tests and report the results"
# else
# pragma message( "boost: Unknown compiler version - please run the configure tests and report the results")
# endif
#endif
#ifdef __clang__ // Clang enhanced Windows compiler #ifdef __clang__ // Clang enhanced Windows compiler
# include "clang.hpp" # include "clang.hpp"
@ -142,16 +153,6 @@
# pragma warn -8104 // static members with ctors not threadsafe # pragma warn -8104 // static members with ctors not threadsafe
# pragma warn -8105 // reference member in class without ctors # pragma warn -8105 // reference member in class without ctors
#endif #endif
//
// versions check:
// last known and checked version is 0x621
#if (__CODEGEARC__ > 0x740)
# if defined(BOOST_ASSERT_CONFIG)
# error "boost: Unknown compiler version - please run the configure tests and report the results"
# else
# pragma message( "boost: Unknown compiler version - please run the configure tests and report the results")
# endif
#endif
// CodeGear C++ Builder 2009 // CodeGear C++ Builder 2009
#if (__CODEGEARC__ <= 0x613) #if (__CODEGEARC__ <= 0x613)