diff options
Diffstat (limited to 'libcxx/include/experimental/__memory')
| -rw-r--r-- | libcxx/include/experimental/__memory | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/experimental/__memory b/libcxx/include/experimental/__memory index 749cf4c0c657..b36f31eebb7c 100644 --- a/libcxx/include/experimental/__memory +++ b/libcxx/include/experimental/__memory @@ -56,11 +56,11 @@ struct __lfts_uses_alloc_ctor_imp<true, _Tp, _Alloc, _Args...> = is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value; static const bool __ic_second = - conditional< + __conditional_t< __ic_first, false_type, is_constructible<_Tp, _Args..., _Alloc> - >::type::value; + >::value; static_assert(__ic_first || __ic_second, "Request for uses allocator construction is ill-formed"); |
