CI: Bump various pre-commit hooks

This commit is contained in:
Thaddeus Crews 2025-03-29 12:56:52 -05:00
parent a210fe6dbd
commit 5edb235018
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
13 changed files with 81 additions and 89 deletions

View file

@ -613,12 +613,12 @@ void GDScriptParser::parse_program() {
current_class = head;
bool can_have_class_or_extends = true;
#define PUSH_PENDING_ANNOTATIONS_TO_HEAD \
if (!annotation_stack.is_empty()) { \
for (AnnotationNode * annot : annotation_stack) { \
head->annotations.push_back(annot); \
} \
annotation_stack.clear(); \
#define PUSH_PENDING_ANNOTATIONS_TO_HEAD \
if (!annotation_stack.is_empty()) { \
for (AnnotationNode *annot : annotation_stack) { \
head->annotations.push_back(annot); \
} \
annotation_stack.clear(); \
}
while (!check(GDScriptTokenizer::Token::TK_EOF)) {