mirror of
https://github.com/boostorg/type_traits.git
synced 2025-08-02 22:14:29 +02:00
is_complete: qualify the detail namespace as otherwise it can trip up msvc-14.0.
This commit is contained in:
@@ -70,7 +70,7 @@ namespace boost {
|
||||
|
||||
|
||||
template <class T>
|
||||
struct is_complete : std::integral_constant<bool, ::boost::is_function<typename boost::remove_reference<T>::type>::value || detail::is_complete_imp<T>::value>
|
||||
struct is_complete : std::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> {};
|
||||
|
Reference in New Issue
Block a user