Searched defs:encode_cv (Results 1 – 1 of 1) sorted by relevance
285 template<typename T> struct encode_cv struct286 { typedef char (& type)[1]; BOOST_STATIC_CONSTANT(std::size_t, value = 1); };287 template<typename T> struct encode_cv<T const *> struct288 { typedef char (& type)[2]; BOOST_STATIC_CONSTANT(std::size_t, value = 2); };289 template<typename T> struct encode_cv<T volatile *> struct290 { typedef char (& type)[3]; BOOST_STATIC_CONSTANT(std::size_t, value = 3); };291 template<typename T> struct encode_cv<T const volatile *> struct292 { typedef char (& type)[4]; BOOST_STATIC_CONSTANT(std::size_t, value = 4); };