From d840152cb7f1090e4302bbe8ec14be322de8ab0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guilloux?= Date: Sat, 28 Dec 2024 19:15:09 +0100 Subject: [PATCH] Codefix: [Script] incorrect end of class detection for doxygen (#13204) --- src/script/api/doxygen_filter.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/api/doxygen_filter.awk b/src/script/api/doxygen_filter.awk index 342d90abd5..daf8057425 100644 --- a/src/script/api/doxygen_filter.awk +++ b/src/script/api/doxygen_filter.awk @@ -211,7 +211,7 @@ BEGIN { } # Maybe the end of the class, if so we can start with the Squirrel export pretty soon -/};/ { +/^[ ]*};/ { comment_buffer = "" cls_level-- if (cls_level != 0) {