From: Nico Weber Date: Tue, 17 Jul 2018 14:20:02 +0000 (+0000) Subject: Remove superfluous ; to fix -Wpedantic warning from gcc X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4bc29d07fb7130830daf3528eb970b39be6f9f9;p=clang Remove superfluous ; to fix -Wpedantic warning from gcc git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337285 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/AST/ASTImporterTest.cpp b/unittests/AST/ASTImporterTest.cpp index 84bfdadae2..21b76173c1 100644 --- a/unittests/AST/ASTImporterTest.cpp +++ b/unittests/AST/ASTImporterTest.cpp @@ -276,7 +276,7 @@ public: template RecordDecl *getRecordDecl(T *D) { auto *ET = cast(D->getType().getTypePtr()); return cast(ET->getNamedType().getTypePtr())->getDecl(); -}; +} // This class provides generic methods to write tests which can check internal // attributes of AST nodes like getPreviousDecl(), isVirtual(), etc. Also,