Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-11 23:27:31

0001 #ifndef GENERS_CPP11_TYPE_TRAITS_HH_
0002 #define GENERS_CPP11_TYPE_TRAITS_HH_
0003 
0004 #include "Alignment/Geners/interface/CPP11_config.hh"
0005 
0006 #ifdef CPP11_STD_AVAILABLE
0007 #include <type_traits>
0008 #define CPP11_is_pointer std::is_pointer
0009 #else
0010 #include <tr1/type_traits>
0011 #define CPP11_is_pointer std::tr1::is_pointer
0012 #endif
0013 
0014 #endif  // GENERS_CPP11_TYPE_TRAITS_HH_