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