1
0
Fork 0

Fix #13875: [Script] be less strict about empty constructor format for doxygen

pull/13882/head
glx22 2025-03-23 23:17:31 +01:00
parent ca801d55d5
commit 5a4f4d5f03
1 changed files with 4 additions and 5 deletions

View File

@ -84,9 +84,6 @@ BEGIN {
api_selected = "false"
}
public = "false"
cls_param[0] = ""
cls_param[1] = 1
cls_param[2] = "x"
cls_in_api = api_selected
api_selected = ""
cls = $2
@ -275,8 +272,10 @@ BEGIN {
/^.*\(.*\).*$/ {
if (cls_level != 1) next
if (!match($0, ";")) {
gsub(/ :$/, ";")
skip_function_body = "true"
if (!match($0, "}$")) {
skip_function_body = "true"
}
gsub(/ :.*$/, ";")
}
if (match($0, "~")) {
if (api_selected != "") {