From 6e01994046860c5c120c832a22557ec1c6b72ce9 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Tue, 14 May 2013 20:30:49 +0000 Subject: [PATCH] Fix the MSVC build broken by r181768 MSVC accepts the using decl but not the typedef. It complains that the typedef is ambiguous. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181826 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/ASTMatchers/Dynamic/VariantValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/ASTMatchers/Dynamic/VariantValue.h b/include/clang/ASTMatchers/Dynamic/VariantValue.h index 8dc4238757..9a41b448cf 100644 --- a/include/clang/ASTMatchers/Dynamic/VariantValue.h +++ b/include/clang/ASTMatchers/Dynamic/VariantValue.h @@ -26,7 +26,7 @@ namespace clang { namespace ast_matchers { namespace dynamic { -typedef ast_matchers::internal::DynTypedMatcher DynTypedMatcher; +using ast_matchers::internal::DynTypedMatcher; /// \brief Variant value class. /// -- 2.40.0