File indexing completed on 2025-01-18 09:53:38
0001
0002
0003
0004
0005
0006
0007 #if !defined(BOOST_VMD_DETAIL_SETUP_HPP)
0008 #define BOOST_VMD_DETAIL_SETUP_HPP
0009
0010 #include <boost/preprocessor/config/config.hpp>
0011
0012 #if defined(BOOST_VMD_MSVC)
0013 #undef BOOST_VMD_MSVC
0014 #endif
0015 #if defined(BOOST_VMD_MSVC_V8)
0016 #undef BOOST_VMD_MSVC_V8
0017 #endif
0018 #if BOOST_PP_VARIADICS
0019 #define BOOST_VMD_MSVC BOOST_PP_VARIADICS_MSVC
0020 #if BOOST_VMD_MSVC && defined(_MSC_VER) && _MSC_VER == 1400
0021 #define BOOST_VMD_MSVC_V8 1
0022 #else
0023 #define BOOST_VMD_MSVC_V8 0
0024 #endif
0025 #if !defined(BOOST_VMD_ASSERT_DATA)
0026 #if defined(NDEBUG)
0027 #define BOOST_VMD_ASSERT_DATA 0
0028 #else
0029 #define BOOST_VMD_ASSERT_DATA 1
0030 #endif
0031 #endif
0032 #else
0033 #define BOOST_VMD_MSVC 0
0034 #define BOOST_VMD_MSVC_V8 0
0035 #if defined(BOOST_VMD_ASSERT_DATA)
0036 #undef BOOST_VMD_ASSERT_DATA
0037 #endif
0038 #define BOOST_VMD_ASSERT_DATA 0
0039 #endif
0040
0041 #endif