mirror of
https://github.com/boostorg/type_traits.git
synced 2025-07-31 13:07:22 +02:00
is_complete: correct namespace names.
This commit is contained in:
@ -71,15 +71,15 @@ namespace boost {
|
||||
|
||||
|
||||
template <class T>
|
||||
struct is_complete : std::integral_constant<bool, ::boost::is_function<typename boost::remove_reference<T>::type>::value || ::boost::detail::is_complete_imp<T>::value>
|
||||
struct is_complete : boost::integral_constant<bool, ::boost::is_function<typename boost::remove_reference<T>::type>::value || ::boost::detail::is_complete_imp<T>::value>
|
||||
{};
|
||||
template <class T>
|
||||
struct is_complete<T&> : is_complete<T> {};
|
||||
struct is_complete<T&> : boost::is_complete<T> {};
|
||||
|
||||
#else
|
||||
|
||||
template <class T> struct is_complete
|
||||
: public integral_constant<bool, true> {};
|
||||
: public boost::integral_constant<bool, true> {};
|
||||
|
||||
#undef BOOST_TT_HAS_WORKING_IS_COMPLETE
|
||||
|
||||
|
Reference in New Issue
Block a user