Searched defs:is_copy_constructible (Results 1 – 2 of 2) sorted by relevance
23 template <class T> struct is_copy_constructible : public boost::is_constructible<T, const T&>{}; struct25 template <> struct is_copy_constructible<void> : public false_type{}; struct26 template <> struct is_copy_constructible<void const> : public false_type{}; struct27 template <> struct is_copy_constructible<void const volatile> : public false_type{}; struct28 template <> struct is_copy_constructible<void volatile> : public false_type{}; struct53 …template <class T> struct is_copy_constructible : public detail::is_copy_constructible_imp<T, is_b… struct55 template <> struct is_copy_constructible<void> : public false_type{}; struct56 template <> struct is_copy_constructible<void const> : public false_type{}; struct57 template <> struct is_copy_constructible<void const volatile> : public false_type{}; struct58 template <> struct is_copy_constructible<void volatile> : public false_type{}; struct[all …]
740 struct is_copy_constructible struct759 static const bool value = sizeof(test(source<T>())) == sizeof(yes_type);