Browse Source

fix stupid type-o

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@125311 91177308-0d34-0410-b5e6-96231b3b80d8
Howard Hinnant 14 năm trước cách đây
mục cha
commit
621ee222d9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      include/type_traits

+ 1 - 1
include/type_traits

@@ -709,7 +709,7 @@ template <class _T1, class _T2> struct _LIBCPP_VISIBLE is_convertible
 
 // 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