Broke C++03 compatibility in 245330. Fix that.

llvm-svn: 245336
This commit is contained in:
Marshall Clow 2015-08-18 19:51:37 +00:00
parent 0d28f78401
commit 29f11b381f
1 changed files with 1 additions and 1 deletions

View File

@ -5574,7 +5574,7 @@ template <typename _Alloc>
_LIBCPP_INLINE_VISIBILITY
void __swap_allocator(_Alloc &, _Alloc &, false_type) _NOEXCEPT {}
template <typename _Alloc, typename _Traits=allocator_traits<_Alloc>>
template <typename _Alloc, typename _Traits=allocator_traits<_Alloc> >
struct __noexcept_move_assign_container : public integral_constant<bool,
_Traits::propagate_on_container_move_assignment::value
#if _LIBCPP_STD_VER > 14