ASTMatchers.h: Appease msc17.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 27 May 2014 15:13:51 +0000 (15:13 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 27 May 2014 15:13:51 +0000 (15:13 +0000)
llvm-svn: 209661

clang/include/clang/ASTMatchers/ASTMatchers.h

index 3d67767..0bfdc14 100644 (file)
@@ -3505,14 +3505,14 @@ AST_MATCHER_P(NestedNameSpecifier, specifiesNamespace,
 ///
 /// \c Decl has pointer identity in the AST.
 inline internal::Matcher<Decl> equalsNode(const Decl *Node) {
-  return makeMatcher(new internal::EqualsNodeMatcher<Decl>(Node));
+  return internal::makeMatcher(new internal::EqualsNodeMatcher<Decl>(Node));
 }
 /// \brief Matches if a node equals another node.
 ///
 /// \c Stmt has pointer identity in the AST.
 ///
 inline internal::Matcher<Stmt> equalsNode(const Stmt *Node) {
-  return makeMatcher(new internal::EqualsNodeMatcher<Stmt>(Node));
+  return internal::makeMatcher(new internal::EqualsNodeMatcher<Stmt>(Node));
 }
 
 /// @}