From e1be30b7e172ab7627a6589761eee41af92e5d51 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Wed, 29 Jul 2015 22:38:23 +0000 Subject: [PATCH] Fix typo in unused variable name. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@243586 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/type_traits | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/type_traits b/include/type_traits index 6b5e03f6d..db8a0434b 100644 --- a/include/type_traits +++ b/include/type_traits @@ -474,7 +474,7 @@ template struct _LIBCPP_TYPE_VIS_ONLY is_function // template struct __libcpp_is_member_function_pointer<_Tp _Up::*> : public is_function<_Tp> {}; // -template +template struct __member_pointer_traits_imp { // forward declaration; specializations later };