Searched defs:add_const_on_value_type (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/Core/util/
H A DMeta.h77 template<typename T> struct add_const_on_value_type { typedef const T type; }; struct in namespace:Eigen::internal
78 template<typename T> struct add_const_on_value_type<T&> { typedef T const& type; }; struct in namespace:Eigen::internal
79 template<typename T> struct add_const_on_value_type<T*> { typedef T const* type; }; struct in namespace:Eigen::internal
80 template<typename T> struct add_const_on_value_type<T* const> { typedef T const* const type; }; struct in namespace:Eigen::internal
81 template<typename T> struct add_const_on_value_type<T const* const> { typedef T const* const type; }; struct in namespace:Eigen::internal

Completed in 329 milliseconds