From c13dd1b3b87e5240427a702cdef679f6dafebd06 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Wed, 22 Jul 2015 20:46:26 +0000 Subject: Fix -Wextra-semi warnings. Patch by Eugene Zelenko! Differential Revision: http://reviews.llvm.org/D11401 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242931 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Basic/SourceManagerTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unittests/Basic/SourceManagerTest.cpp') diff --git a/unittests/Basic/SourceManagerTest.cpp b/unittests/Basic/SourceManagerTest.cpp index 494c27a2f1..5a1a393fbf 100644 --- a/unittests/Basic/SourceManagerTest.cpp +++ b/unittests/Basic/SourceManagerTest.cpp @@ -66,7 +66,7 @@ class VoidModuleLoader : public ModuleLoader { GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) override { return nullptr; } bool lookupMissingImports(StringRef Name, SourceLocation TriggerLoc) override - { return 0; }; + { return 0; } }; TEST_F(SourceManagerTest, isBeforeInTranslationUnit) { -- cgit v1.2.1