Chris@16
|
1 // static_assert.hpp --------------------------------------------------------------//
|
Chris@16
|
2
|
Chris@16
|
3 // Copyright 2009-2010 Vicente J. Botet Escriba
|
Chris@16
|
4
|
Chris@16
|
5 // Distributed under the Boost Software License, Version 1.0.
|
Chris@16
|
6 // See http://www.boost.org/LICENSE_1_0.txt
|
Chris@16
|
7
|
Chris@16
|
8
|
Chris@16
|
9 #ifndef BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP
|
Chris@16
|
10 #define BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP
|
Chris@16
|
11
|
Chris@16
|
12 #include <boost/chrono/config.hpp>
|
Chris@16
|
13
|
Chris@16
|
14 #ifndef BOOST_NO_CXX11_STATIC_ASSERT
|
Chris@16
|
15 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) static_assert(CND,MSG)
|
Chris@16
|
16 #elif defined(BOOST_CHRONO_USES_STATIC_ASSERT)
|
Chris@16
|
17 #include <boost/static_assert.hpp>
|
Chris@16
|
18 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) BOOST_STATIC_ASSERT(CND)
|
Chris@16
|
19 #elif defined(BOOST_CHRONO_USES_MPL_ASSERT)
|
Chris@16
|
20 #include <boost/mpl/assert.hpp>
|
Chris@16
|
21 #include <boost/mpl/bool.hpp>
|
Chris@16
|
22 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) \
|
Chris@16
|
23 BOOST_MPL_ASSERT_MSG(boost::mpl::bool_< (CND) >::type::value, MSG, TYPES)
|
Chris@16
|
24 #else
|
Chris@16
|
25 //~ #elif defined(BOOST_CHRONO_USES_ARRAY_ASSERT)
|
Chris@16
|
26 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) static char BOOST_JOIN(boost_chrono_test_,__LINE__)[(CND)?1:-1]
|
Chris@16
|
27 //~ #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES)
|
Chris@16
|
28 #endif
|
Chris@16
|
29
|
Chris@16
|
30 #endif // BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP
|