From 69150282888f67763b847e6d1c2709f4c272abaa Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Tue, 18 Dec 2018 08:36:16 +0000 Subject: [PATCH] [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 --- unittests/AST/ASTImporterTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.40.0