diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-13 00:09:06 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-13 00:09:06 +0200 |
| commit | 98c18a13d25075e1bc876885bb95267ed9f2a1f8 (patch) | |
| tree | 72a492999f4848f85a22aba4f1f30ab4cfa323fc /typeutils.h | |
| parent | e097a4306efd2a45a531d2da09de634f80ba30f1 (diff) | |
outline state management; change maybe macro
Diffstat (limited to 'typeutils.h')
| -rw-r--r-- | typeutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
