File indexing completed on 2025-01-30 09:48:04
0001
0002 #ifndef BOOST_MPL_NUMERIC_CAST_HPP_INCLUDED
0003 #define BOOST_MPL_NUMERIC_CAST_HPP_INCLUDED
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include <boost/mpl/aux_/config/msvc.hpp>
0018 #include <boost/mpl/aux_/config/workaround.hpp>
0019
0020
0021
0022
0023
0024 #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x570) )
0025 # define BOOST_MPL_AUX_NUMERIC_CAST numeric_cast_
0026 #else
0027 # define BOOST_MPL_AUX_NUMERIC_CAST numeric_cast
0028 #endif
0029
0030 namespace boost { namespace mpl {
0031
0032
0033
0034 template< typename SourceTag, typename TargetTag > struct BOOST_MPL_AUX_NUMERIC_CAST
0035 {
0036 template< typename N > struct apply;
0037 };
0038
0039 }}
0040
0041 #endif