File indexing completed on 2025-01-18 09:50:26
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_PROTO_DETAIL_DONT_CARE_HPP_EAN_11_07_2007
0010 #define BOOST_PROTO_DETAIL_DONT_CARE_HPP_EAN_11_07_2007
0011
0012 #include <boost/config.hpp>
0013
0014 #if defined(_MSC_VER)
0015 # pragma warning(push)
0016 # pragma warning(disable : 4714)
0017 #endif
0018
0019 namespace boost { namespace proto
0020 {
0021 namespace detail
0022 {
0023 struct dont_care
0024 {
0025 BOOST_FORCEINLINE dont_care(...);
0026 };
0027 }
0028 }}
0029
0030 #if defined(_MSC_VER)
0031 # pragma warning(pop)
0032 #endif
0033
0034 #endif