diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-01 16:56:40 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-01 16:56:40 +0000 |
commit | 5afc869f9677210c0a2c2ff8239e3a386cd7db26 (patch) | |
tree | 9f2672a044a3f4a47cc6d5fbbd9f045a853efb50 /clang/unittests/Tooling | |
parent | e825f44761d8a2f36e075caeaefb2286264910d9 (diff) | |
download | bcm5719-llvm-5afc869f9677210c0a2c2ff8239e3a386cd7db26.tar.gz bcm5719-llvm-5afc869f9677210c0a2c2ff8239e3a386cd7db26.zip |
Adds 'override' to overriding methods. NFC.
These were uncoveredby my yet undelivered patch.
llvm-svn: 218774
Diffstat (limited to 'clang/unittests/Tooling')
-rw-r--r-- | clang/unittests/Tooling/ToolingTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/ToolingTest.cpp b/clang/unittests/Tooling/ToolingTest.cpp index 85ab942387b..98b70081b91 100644 --- a/clang/unittests/Tooling/ToolingTest.cpp +++ b/clang/unittests/Tooling/ToolingTest.cpp @@ -188,7 +188,7 @@ struct VerifyEndCallback : public SourceFileCallbacks { ++BeginCalled; return true; } - virtual void handleEndSource() { + virtual void handleEndSource() override { ++EndCalled; } std::unique_ptr<ASTConsumer> newASTConsumer() { |