File indexing completed on 2025-01-18 09:53:11
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_TT_IS_FUNDAMENTAL_HPP_INCLUDED
0010 #define BOOST_TT_IS_FUNDAMENTAL_HPP_INCLUDED
0011
0012 #include <boost/type_traits/is_arithmetic.hpp>
0013 #include <boost/type_traits/is_void.hpp>
0014
0015 namespace boost {
0016
0017
0018 #if defined( BOOST_CODEGEARC )
0019 template <class T> struct is_fundamental : public integral_constant<bool, __is_fundamental(T)> {};
0020 #else
0021 template <class T> struct is_fundamental : public integral_constant<bool, ::boost::is_arithmetic<T>::value || ::boost::is_void<T>::value> {};
0022 #endif
0023
0024 }
0025
0026 #endif