summaryrefslogtreecommitdiff
path: root/unittests/Basic/SourceManagerTest.cpp
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2015-07-22 20:46:26 +0000
committerHans Wennborg <hans@hanshq.net>2015-07-22 20:46:26 +0000
commitc13dd1b3b87e5240427a702cdef679f6dafebd06 (patch)
treef4c25893a2814895b4c8a9b21c780a67cea1778f /unittests/Basic/SourceManagerTest.cpp
parentc9afbb4aaae68e07b81d4fff7a9df80673cd7b08 (diff)
downloadclang-c13dd1b3b87e5240427a702cdef679f6dafebd06.tar.gz
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
Diffstat (limited to 'unittests/Basic/SourceManagerTest.cpp')
-rw-r--r--unittests/Basic/SourceManagerTest.cpp2
1 files changed, 1 insertions, 1 deletions
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) {