From 2386bc5d57639c4dea410371993922840be84be2 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 6 Sep 2018 15:16:17 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaExceptionSpec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.40.0