diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
| commit | 75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (patch) | |
| tree | c9a66af84908aa6ce188344ffa7d962a88ba95f2 /builtins/optionals.c | |
| parent | b0b23acf887bec28b5ef8d0dfe448c4228ee0eb3 (diff) | |
Rename closure_t -> Closure_t for consistency
Diffstat (limited to 'builtins/optionals.c')
| -rw-r--r-- | builtins/optionals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/optionals.c b/builtins/optionals.c index b38883fb..065d535a 100644 --- a/builtins/optionals.c +++ b/builtins/optionals.c @@ -11,7 +11,7 @@ public const Array_t NULL_ARRAY = {.length=-1}; public const Bool_t NULL_BOOL = -1; public const Int_t NULL_INT = {.small=0}; public const Table_t NULL_TABLE = {.entries.length=-1}; -public const closure_t NULL_CLOSURE = {.fn=NULL}; +public const Closure_t NULL_CLOSURE = {.fn=NULL}; public const Text_t NULL_TEXT = {.length=-1}; static inline bool is_null(const void *obj, const TypeInfo *non_optional_type) |
