diff options
| author | Reid Kleckner <reid@kleckner.net> | 2013-05-14 20:30:49 +0000 |
|---|---|---|
| committer | Reid Kleckner <reid@kleckner.net> | 2013-05-14 20:30:49 +0000 |
| commit | 262c36a18577cd0ec126f47b01f43fbe24c18e6f (patch) | |
| tree | aad06046f0489e10055049b34e41c868eceea6fb /clang | |
| parent | 369f316ef884679bc1b5c95206a56495036cbf29 (diff) | |
| download | bcm5719-llvm-262c36a18577cd0ec126f47b01f43fbe24c18e6f.tar.gz bcm5719-llvm-262c36a18577cd0ec126f47b01f43fbe24c18e6f.zip | |
Fix the MSVC build broken by r181768
MSVC accepts the using decl but not the typedef. It complains that the
typedef is ambiguous.
llvm-svn: 181826
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/ASTMatchers/Dynamic/VariantValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h b/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h index 8dc4238757e..9a41b448cf8 100644 --- a/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h +++ b/clang/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. /// |

