changed to use custom implementation of is_default_constructible

This commit is contained in:
Robert Ramey
2015-04-27 16:44:36 -07:00
parent 4a80b0f089
commit e25f595656

View File

@@ -116,7 +116,7 @@ struct vector_load_impl {
item_version_type item_version
){
typedef typename boost::mpl::if_c<
std::is_default_constructible<typename T::value_type>::value,
detail::is_default_constructible<typename T::value_type>::value,
default_constructible,
not_default_constructible
>::type type;