diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-07-22 20:46:26 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-07-22 20:46:26 +0000 |
commit | 4afe504980b5637cab53bfa36022891c62ff390a (patch) | |
tree | d8b00db5000f69ccc998ab01d6a3efdd963bfa51 /clang/unittests/Basic/SourceManagerTest.cpp | |
parent | 13958b739eeb3b25db1d60a82340384a9fd7a760 (diff) | |
download | bcm5719-llvm-4afe504980b5637cab53bfa36022891c62ff390a.tar.gz bcm5719-llvm-4afe504980b5637cab53bfa36022891c62ff390a.zip |
Fix -Wextra-semi warnings.
Patch by Eugene Zelenko!
Differential Revision: http://reviews.llvm.org/D11401
llvm-svn: 242931
Diffstat (limited to 'clang/unittests/Basic/SourceManagerTest.cpp')
-rw-r--r-- | clang/unittests/Basic/SourceManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/SourceManagerTest.cpp b/clang/unittests/Basic/SourceManagerTest.cpp index 494c27a2f1c..5a1a393fbf0 100644 --- a/clang/unittests/Basic/SourceManagerTest.cpp +++ b/clang/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) { |