aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/MatchVerifier.h
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2013-02-28 13:21:39 +0000
committerManuel Klimek <klimek@google.com>2013-02-28 13:21:39 +0000
commitff9a01000ff74a994aa3da26ea2ec732c97291b7 (patch)
treeb979e136b99083c2f2e8e1a47e919b15c2cfd93b /unittests/AST/MatchVerifier.h
parenta4d4621b206f941cc58d9d0bc7c67a8e705c9d49 (diff)
First step towards adding a parent map to the ASTContext.
This does not yet implement the LimitNode approach discussed. The impact of this is an O(n) in the number of nodes in the AST reduction of complexity for certain kinds of matchers (as otherwise the parent map gets recreated for every new MatchFinder). See FIXMEs in the comments for the direction of future work. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/AST/MatchVerifier.h')
-rw-r--r--unittests/AST/MatchVerifier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/AST/MatchVerifier.h b/unittests/AST/MatchVerifier.h
index f0a5853704..7aa78860aa 100644
--- a/unittests/AST/MatchVerifier.h
+++ b/unittests/AST/MatchVerifier.h
@@ -44,7 +44,7 @@ public:
protected:
virtual void run(const MatchFinder::MatchResult &Result);
virtual void verify(const MatchFinder::MatchResult &Result,
- const NodeType &Node) = 0;
+ const NodeType &Node) {}
void setFailure(const Twine &Result) {
Verified = false;