forked from boostorg/type_traits
Use one fewer instantiations for is_pod than we used to.
[SVN r18488]
This commit is contained in:
@ -125,7 +125,7 @@ BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,void const volatile,true)
|
||||
} // namespace detail
|
||||
|
||||
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_POD,T,::boost::detail::is_pod_impl<T>::value)
|
||||
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pod,T,::boost::is_POD<T>::value)
|
||||
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pod,T,::boost::detail::is_pod_impl<T>::value)
|
||||
|
||||
} // namespace boost
|
||||
|
||||
|
Reference in New Issue
Block a user