From: Simon Pilgrim Date: Thu, 6 Sep 2018 15:16:17 +0000 (+0000) Subject: Remove unnecessary semicolon to silence -Wpedantic warning. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2386bc5d57639c4dea410371993922840be84be2;p=clang Remove unnecessary semicolon to silence -Wpedantic warning. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@341556 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExceptionSpec.cpp b/lib/Sema/SemaExceptionSpec.cpp index f3e1563c3a..4de205c504 100644 --- a/lib/Sema/SemaExceptionSpec.cpp +++ b/lib/Sema/SemaExceptionSpec.cpp @@ -238,7 +238,7 @@ static bool exceptionSpecNotKnownYet(const FunctionDecl *FD) { auto EST = MD->getType()->castAs()->getExceptionSpecType(); return EST == EST_Unparsed || (EST == EST_Unevaluated && MD->getParent()->isBeingDefined()); -}; +} static bool CheckEquivalentExceptionSpecImpl( Sema &S, const PartialDiagnostic &DiagID, const PartialDiagnostic &NoteID,