From: Reid Kleckner Date: Tue, 14 May 2013 20:30:49 +0000 (+0000) Subject: Fix the MSVC build broken by r181768 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e01994046860c5c120c832a22557ec1c6b72ce9;p=clang 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 --- 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. ///