[libcxx] r245336 - Broke C++03 compatibility in 245330. Fix that.

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 18 12:51:37 PDT 2015


Author: marshall
Date: Tue Aug 18 14:51:37 2015
New Revision: 245336

URL: http://llvm.org/viewvc/llvm-project?rev=245336&view=rev
Log:
Broke C++03 compatibility in 245330. Fix that.

Modified:
    libcxx/trunk/include/memory

Modified: libcxx/trunk/include/memory
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/memory?rev=245336&r1=245335&r2=245336&view=diff
==============================================================================
--- libcxx/trunk/include/memory (original)
+++ libcxx/trunk/include/memory Tue Aug 18 14:51:37 2015
@@ -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




More information about the cfe-commits mailing list