aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/ASTImporterTest.cpp
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2018-12-18 08:36:16 +0000
committerMartin Storsjo <martin@martin.st>2018-12-18 08:36:16 +0000
commit69150282888f67763b847e6d1c2709f4c272abaa (patch)
treefdafb81ea5b77b9360c8bd44d0b24a13a79c3cb3 /unittests/AST/ASTImporterTest.cpp
parentda4951c2074af6b344fe24e6a56dc9e6b90502d6 (diff)
[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
Diffstat (limited to 'unittests/AST/ASTImporterTest.cpp')
-rw-r--r--unittests/AST/ASTImporterTest.cpp2
1 files changed, 1 insertions, 1 deletions
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) {