[cfe-commits] [libcxx] r131346 - /libcxx/trunk/include/type_traits
Howard Hinnant
hhinnant at apple.com
Sat May 14 10:24:22 PDT 2011
Author: hhinnant
Date: Sat May 14 12:24:22 2011
New Revision: 131346
URL: http://llvm.org/viewvc/llvm-project?rev=131346&view=rev
Log:
Fix type-o found by Justin Hibbits
Modified:
libcxx/trunk/include/type_traits
Modified: libcxx/trunk/include/type_traits
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/type_traits?rev=131346&r1=131345&r2=131346&view=diff
==============================================================================
--- libcxx/trunk/include/type_traits (original)
+++ libcxx/trunk/include/type_traits Sat May 14 12:24:22 2011
@@ -2489,7 +2489,7 @@
: public integral_constant<bool, __is_trivial(_Tp)>
#else
: integral_constant<bool, is_trivially_copyable<_Tp>::value &&
- is_trivially_default_constructible<T>::value>::value>
+ is_trivially_default_constructible<_Tp>::value>::value>
#endif
{};
More information about the cfe-commits
mailing list