Skip to content

Commit 58310ec

Browse files
committed
Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.
llvm-svn: 341556
1 parent 6088e85 commit 58310ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/SemaExceptionSpec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ static bool exceptionSpecNotKnownYet(const FunctionDecl *FD) {
238238
auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType();
239239
return EST == EST_Unparsed ||
240240
(EST == EST_Unevaluated && MD->getParent()->isBeingDefined());
241-
};
241+
}
242242

243243
static bool CheckEquivalentExceptionSpecImpl(
244244
Sema &S, const PartialDiagnostic &DiagID, const PartialDiagnostic &NoteID,

0 commit comments

Comments
 (0)