Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.

llvm-svn: 341556
diff --git a/clang/lib/Sema/SemaExceptionSpec.cpp b/clang/lib/Sema/SemaExceptionSpec.cpp
index f3e1563..4de205c 100644
--- a/clang/lib/Sema/SemaExceptionSpec.cpp
+++ b/clang/lib/Sema/SemaExceptionSpec.cpp
@@ -238,7 +238,7 @@
   auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType();
   return EST == EST_Unparsed ||
          (EST == EST_Unevaluated && MD->getParent()->isBeingDefined());
-};
+}
 
 static bool CheckEquivalentExceptionSpecImpl(
     Sema &S, const PartialDiagnostic &DiagID, const PartialDiagnostic &NoteID,