1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_DETAIL_HAS_DEFAULT_CONSTRUCTOR_HPP_INCLUDED
- #define BOOST_DETAIL_HAS_DEFAULT_CONSTRUCTOR_HPP_INCLUDED
- #include <boost/type_traits/has_trivial_constructor.hpp>
- namespace boost { namespace detail {
- template <class T>
- struct has_default_constructor
- : public has_trivial_constructor<T>
- {};
- } }
- #endif
|