From: Martin Storsjo Date: Tue, 18 Dec 2018 08:36:16 +0000 (+0000) Subject: [unittests] Remove superfluous semicolon, fixing warnings with GCC. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69150282888f67763b847e6d1c2709f4c272abaa;p=clang [unittests] Remove superfluous semicolon, fixing warnings with GCC. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349453 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/AST/ASTImporterTest.cpp b/unittests/AST/ASTImporterTest.cpp index aaadeb0b9d..c6acf573e5 100644 --- a/unittests/AST/ASTImporterTest.cpp +++ b/unittests/AST/ASTImporterTest.cpp @@ -4467,7 +4467,7 @@ static Decl *findInDeclListOfDC(DeclContext *DC, DeclarationName Name) { return ND; } return nullptr; -}; +} TEST_P(ASTImporterLookupTableTest, FriendWhichIsnotFoundByNormalLookupShouldBeFoundByImporterSpecificLookup) {