1234567891011121314151617181920212223 |
- #ifndef BOOST_MPL_AUX_CONFIG_GCC_HPP_INCLUDED
- #define BOOST_MPL_AUX_CONFIG_GCC_HPP_INCLUDED
- #if defined(__GNUC__) && !defined(__EDG_VERSION__)
- # define BOOST_MPL_CFG_GCC ((__GNUC__ << 8) | __GNUC_MINOR__)
- #else
- # define BOOST_MPL_CFG_GCC 0
- #endif
- #endif
|