diff options
author | Martin Storsjo <martin@martin.st> | 2018-12-18 08:36:16 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2018-12-18 08:36:16 +0000 |
commit | 85833393d0e588f6d7613567db9c212236e3f0eb (patch) | |
tree | 2ec6122c5bd8613c4ce7fd1ac81155bffdadb70a /clang/unittests/AST/ASTImporterTest.cpp | |
parent | 56f9c81c6002852b2eff339c46bb251b3a506acc (diff) | |
download | bcm5719-llvm-85833393d0e588f6d7613567db9c212236e3f0eb.tar.gz bcm5719-llvm-85833393d0e588f6d7613567db9c212236e3f0eb.zip |
[unittests] Remove superfluous semicolon, fixing warnings with GCC. NFC.
llvm-svn: 349453
Diffstat (limited to 'clang/unittests/AST/ASTImporterTest.cpp')
-rw-r--r-- | clang/unittests/AST/ASTImporterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp index aaadeb0b9d6..c6acf573e58 100644 --- a/clang/unittests/AST/ASTImporterTest.cpp +++ b/clang/unittests/AST/ASTImporterTest.cpp @@ -4467,7 +4467,7 @@ static Decl *findInDeclListOfDC(DeclContext *DC, DeclarationName Name) { return ND; } return nullptr; -}; +} TEST_P(ASTImporterLookupTableTest, FriendWhichIsnotFoundByNormalLookupShouldBeFoundByImporterSpecificLookup) { |