From 3a331f3da4d2154fefd905bac31d859def65b7c2 Mon Sep 17 00:00:00 2001 From: Edwin Vane Date: Thu, 30 May 2013 13:59:44 +0000 Subject: Coding style fix for SourceFileCallbacks llvm-svn: 182930 --- clang/unittests/Tooling/ToolingTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'clang/unittests/Tooling/ToolingTest.cpp') diff --git a/clang/unittests/Tooling/ToolingTest.cpp b/clang/unittests/Tooling/ToolingTest.cpp index a7b94319184..d96366dcd58 100644 --- a/clang/unittests/Tooling/ToolingTest.cpp +++ b/clang/unittests/Tooling/ToolingTest.cpp @@ -133,12 +133,12 @@ TEST(ToolInvocation, TestMapVirtualFile) { struct VerifyEndCallback : public SourceFileCallbacks { VerifyEndCallback() : BeginCalled(0), EndCalled(0), Matched(false) {} - virtual bool BeginSource(CompilerInstance &CI, - StringRef Filename) LLVM_OVERRIDE { + virtual bool handleBeginSource(CompilerInstance &CI, + StringRef Filename) LLVM_OVERRIDE { ++BeginCalled; return true; } - virtual void EndSource() { + virtual void handleEndSource() { ++EndCalled; } ASTConsumer *newASTConsumer() { -- cgit v1.2.3