Warning, file /include/boost/bimap/detail/debug/static_error.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_BIMAP_DETAIL_DEBUG_STATIC_ERROR_HPP
0013 #define BOOST_BIMAP_DETAIL_DEBUG_STATIC_ERROR_HPP
0014
0015 #if defined(_MSC_VER)
0016 #pragma once
0017 #endif
0018
0019 #include <boost/config.hpp>
0020
0021 #include <boost/mpl/assert.hpp>
0022 #include <boost/preprocessor/cat.hpp>
0023
0024
0025
0026
0027 #define BOOST_BIMAP_STATIC_ERROR(MESSAGE,VARIABLES) \
0028 BOOST_MPL_ASSERT_MSG(false, \
0029 BOOST_PP_CAT(BIMAP_STATIC_ERROR__,MESSAGE), \
0030 VARIABLES)
0031
0032
0033
0034
0035 #endif