[clang] [NFC] Remove semicolons after function definitions (PR #87764)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 5 03:00:11 PDT 2024
https://github.com/NagyDonat created https://github.com/llvm/llvm-project/pull/87764
They were accidentally left behind when
https://github.com/llvm/llvm-project/pull/86536 converted some lambdas into stand-alone methods.
This fixes warnings from -Wc++98-compat-extra-semi
>From 77e472432c524a365f7a92d2edb3a53095e46ce3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Don=C3=A1t=20Nagy?= <donat.nagy at ericsson.com>
Date: Fri, 5 Apr 2024 11:56:47 +0200
Subject: [PATCH] [NFC] Remove semicolons after function definitions
They were accidentally left behind when
https://github.com/llvm/llvm-project/pull/86536 converted some lambdas
into stand-alone methods.
This fixes warnings from -Wc++98-compat-extra-semi
---
clang/lib/StaticAnalyzer/Core/CallDescription.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clang/lib/StaticAnalyzer/Core/CallDescription.cpp b/clang/lib/StaticAnalyzer/Core/CallDescription.cpp
index dcf6a2625b66f4..0bb0fe66e54ff8 100644
--- a/clang/lib/StaticAnalyzer/Core/CallDescription.cpp
+++ b/clang/lib/StaticAnalyzer/Core/CallDescription.cpp
@@ -89,7 +89,7 @@ bool ento::CallDescription::matchNameOnly(const NamedDecl *ND) const {
// FIXME This comparison is way SLOWER than comparing pointers.
// At some point in the future, we should compare FunctionDecl pointers.
return Name.getAsString() == getFunctionName();
-};
+}
bool ento::CallDescription::matchQualifiedNameParts(const Decl *D) const {
const auto FindNextNamespaceOrRecord =
@@ -115,7 +115,7 @@ bool ento::CallDescription::matchQualifiedNameParts(const Decl *D) const {
// We matched if we consumed all expected qualifier segments.
return QualifierPartsIt == QualifierPartsEndIt;
-};
+}
bool ento::CallDescription::matchesImpl(const FunctionDecl *FD, size_t ArgCount,
size_t ParamCount) const {
More information about the cfe-commits
mailing list