From da518aa92f7e40ad31625b791f9a0b1325b2c8a1 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Tue, 27 Feb 2024 10:12:20 +0100 Subject: [PATCH] =?UTF-8?q?astutils.cpp:=20fix=20'warning:=20extra=20?= =?UTF-8?q?=E2=80=98;=E2=80=99=20[-Wpedantic]'=20(#6048)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/astutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index b3a656bdf02..017ff134f78 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -1520,7 +1520,7 @@ bool compareTokenFlags(const Token* tok1, const Token* tok2, bool macro) { if (tok1->isSigned() != tok2->isSigned()) return false; return true; -}; +} static bool astIsBoolLike(const Token* tok) {