Home
last modified time | relevance | path

Searched defs:has_nothrow_copy_constructor (Results 1 – 1 of 1) sorted by relevance

/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dhas_nothrow_copy.hpp36 template <class T> struct has_nothrow_copy_constructor : public integral_constant<bool, BOOST_HAS_N… struct
66 template <> struct has_nothrow_copy_constructor<void> : public false_type{}; struct
67 template <class T> struct has_nothrow_copy_constructor<T volatile> : public false_type{}; struct
68 template <class T> struct has_nothrow_copy_constructor<T&> : public false_type{}; struct
70 template <class T> struct has_nothrow_copy_constructor<T&&> : public false_type{}; struct
73 template <> struct has_nothrow_copy_constructor<void const> : public false_type{}; struct
74 template <> struct has_nothrow_copy_constructor<void volatile> : public false_type{}; struct
75 template <> struct has_nothrow_copy_constructor<void const volatile> : public false_type{}; struct