Remove redundant virtual on member functions marked 'override'.

llvm-svn: 234417
This commit is contained in:
David Blaikie 2015-04-08 17:01:55 +00:00
parent 67240892a2
commit e229011d12
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public:
VerifyMatch(BoundNodesCallback *FindResultVerifier, bool *Verified)
: Verified(Verified), FindResultReviewer(FindResultVerifier) {}
virtual void run(const MatchFinder::MatchResult &Result) override {
void run(const MatchFinder::MatchResult &Result) override {
if (FindResultReviewer != nullptr) {
*Verified |= FindResultReviewer->run(&Result.Nodes, Result.Context);
} else {