File indexing completed on 2025-01-18 09:52:35
0001 #ifndef BOOST_SYSTEM_DETAIL_IS_SAME_HPP_INCLUDED
0002 #define BOOST_SYSTEM_DETAIL_IS_SAME_HPP_INCLUDED
0003
0004
0005
0006
0007
0008 namespace boost
0009 {
0010
0011 namespace system
0012 {
0013
0014 namespace detail
0015 {
0016
0017 template<class T1, class T2> struct is_same
0018 {
0019 enum _vt { value = 0 };
0020 };
0021
0022 template<class T> struct is_same<T, T>
0023 {
0024 enum _vt { value = 1 };
0025 };
0026
0027 }
0028
0029 }
0030
0031 }
0032
0033 #endif