9 #ifndef _STRUS_BASE_TYPE_TRAITS_HPP_INCLUDED 
   10 #define _STRUS_BASE_TYPE_TRAITS_HPP_INCLUDED 
   12 #if __cplusplus >= 201103L 
   13 #include <type_traits> 
   17 template< 
typename T >
 
   18 struct is_arithmetic :
public std::is_arithmetic<T> {};
 
   20 template< 
typename T, 
typename U >
 
   21 struct is_same :
public std::is_same<T,U> {};
 
   27 #include <boost/type_traits.hpp> 
   31 template< 
typename T >
 
   34 template< 
typename T, 
typename U >
 
   35 struct is_same :
public boost::is_same<T,U> {};
 
Definition: type_traits.hpp:35
Definition: type_traits.hpp:32