summaryrefslogtreecommitdiff
path: root/src/parser/parser_core.c
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-20 12:06:28 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-20 12:06:28 +0000
commite5d8c4219cfe5629a3ce4dbff01406a1817a788f (patch)
treec600b4f6713877b748dbf677a405dc1fbafae8df /src/parser/parser_core.c
parentdb690b368f7e05b242f2e775f620f35ab0df5bc3 (diff)
Reference binding...
Diffstat (limited to 'src/parser/parser_core.c')
-rw-r--r--src/parser/parser_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/parser_core.c b/src/parser/parser_core.c
index acab268..3c2805c 100644
--- a/src/parser/parser_core.c
+++ b/src/parser/parser_core.c
@@ -591,8 +591,8 @@ static ASTNode *generate_derive_impls(ParserContext *ctx, ASTNode *strct, char *
else if (fdef && fdef->type == NODE_STRUCT)
{
// Struct field: use _eq function, pass addresses
- // self.field is L-value, other.field is L-value (auto-deref from pointer)
- // We need addresses of them: &self.field, &other.field
+ // self.field is L-value, other.field is L-value (auto-deref from
+ // pointer) We need addresses of them: &self.field, &other.field
sprintf(cmp, "%s__eq(&self.%s, &other.%s)", ft, fn, fn);
}
else