From 98c18a13d25075e1bc876885bb95267ed9f2a1f8 Mon Sep 17 00:00:00 2001 From: Ákos Kőrösi Date: Wed, 13 May 2026 00:09:06 +0200 Subject: outline state management; change maybe macro --- typeutils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'typeutils.h') diff --git a/typeutils.h b/typeutils.h index e7aee6f..925857b 100644 --- a/typeutils.h +++ b/typeutils.h @@ -96,8 +96,8 @@ static inline char* inner(String* str) { } -#define DECLARE_MAYBE(T) \ +#define DECLARE_MAYBE(T, Name) \ typedef struct { \ bool some; \ T value; \ - } Maybe##T; + } Name; -- cgit v1.2.3