Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:38

0001 
0002 //  (C) Copyright Edward Diener 2011-2015
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
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 /* BOOST_VMD_MSVC  && defined(_MSC_VER) && _MSC_VER == 1400 */
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 /* NDEBUG */
0031 #endif /* BOOST_VMD_ASSERT_DATA */
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 /* BOOST_PP_VARIADICS */
0040 
0041 #endif /* BOOST_VMD_DETAIL_SETUP_HPP */