[libcxx] r243586 - Fix typo in unused variable name.
Nick Lewycky
nicholas at mxc.ca
Wed Jul 29 15:38:23 PDT 2015
Author: nicholas
Date: Wed Jul 29 17:38:23 2015
New Revision: 243586
URL: http://llvm.org/viewvc/llvm-project?rev=243586&view=rev
Log:
Fix typo in unused variable name.
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=243586&r1=243585&r2=243586&view=diff
==============================================================================
--- libcxx/trunk/include/type_traits (original)
+++ libcxx/trunk/include/type_traits Wed Jul 29 17:38:23 2015
@@ -474,7 +474,7 @@ template <class _Tp> struct _LIBCPP_TYPE
// template <class _Tp, class _Up> struct __libcpp_is_member_function_pointer<_Tp _Up::*> : public is_function<_Tp> {};
//
-template <class _MP, bool _IsMemberFuctionPtr, bool _IsMemberObjectPtr>
+template <class _MP, bool _IsMemberFunctionPtr, bool _IsMemberObjectPtr>
struct __member_pointer_traits_imp
{ // forward declaration; specializations later
};
More information about the cfe-commits
mailing list