Searched refs:has_trivial_constructor (Results 1 – 10 of 10) sorted by relevance
39 template <typename T> struct has_trivial_constructor struct46 template <> struct has_trivial_constructor<void> : public boost::false_type{}; struct47 template <> struct has_trivial_constructor<void const> : public boost::false_type{}; struct48 template <> struct has_trivial_constructor<void const volatile> : public boost::false_type{}; struct49 template <> struct has_trivial_constructor<void volatile> : public boost::false_type{}; struct51 template <class T> struct has_trivial_default_constructor : public has_trivial_constructor<T> {};
24 (::boost::has_trivial_constructor<T>::value
58 template <class T> struct has_nothrow_constructor : public ::boost::has_trivial_constructor<T> {};
106 …NOTHROW_CONSTRUCTOR(T) (__has_nothrow_constructor(T) || ::boost::has_trivial_constructor<T>::value)180 # if __has_feature(has_trivial_constructor)
506 …uninitialized_fill_dispatch(first, last, boost::has_trivial_constructor<value_type>(), disable_tri… in uninitialized_fill()530 boost::has_trivial_constructor<value_type>, in construct()
118 # if __has_feature(has_trivial_constructor)
508 struct has_trivial_constructor
3460 #if __has_feature(has_trivial_constructor) || (_GNUC_VER >= 403)