From fd74479a2bf2e4ccc35d1c2fa206de8f28be1e54 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 16:28:57 -0400 Subject: Deprecate optional '?' postfix operator --- src/ast.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index 53685b28..90191219 100644 --- a/src/ast.h +++ b/src/ast.h @@ -269,7 +269,6 @@ typedef enum { LangDef, Index, FieldAccess, - Optional, NonOptional, DocTest, Assert, @@ -438,7 +437,7 @@ struct ast_s { } FieldAccess; struct { ast_t *value; - } Optional, NonOptional; + } NonOptional; struct { ast_t *expr, *expected; bool skip_source : 1; -- cgit v1.2.3