[cfe-commits] [libcxx] r125311 - /libcxx/trunk/include/type_traits

Howard Hinnant hhinnant at apple.com
Thu Feb 10 13:34:42 PST 2011


Author: hhinnant
Date: Thu Feb 10 15:34:42 2011
New Revision: 125311

URL: http://llvm.org/viewvc/llvm-project?rev=125311&view=rev
Log:
fix stupid type-o

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=125311&r1=125310&r2=125311&view=diff
==============================================================================
--- libcxx/trunk/include/type_traits (original)
+++ libcxx/trunk/include/type_traits Thu Feb 10 15:34:42 2011
@@ -709,7 +709,7 @@
 
 // is_base_of
 
-#ifdef __has_feature(is_base_of)
+#if __has_feature(is_base_of)
 
 template <class _Bp, class _Dp>
 struct _LIBCPP_VISIBLE is_base_of





More information about the cfe-commits mailing list