diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 20:21:01 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 20:21:01 -0500 |
| commit | 7cbd20062472012caee73f6a438978be97d2ace2 (patch) | |
| tree | c1c2b127a465e5ea80cbf7700638f9ddf2f7d60e /builtins/bool.c | |
| parent | 01a05db2171d83bd79cf281a368633085b268168 (diff) | |
Clean up some binops to use generic ops
Diffstat (limited to 'builtins/bool.c')
| -rw-r--r-- | builtins/bool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/bool.c b/builtins/bool.c index 9af2ed2c..4efb2681 100644 --- a/builtins/bool.c +++ b/builtins/bool.c @@ -26,7 +26,7 @@ public CORD Bool__as_str(const bool *b, bool colorize, const TypeInfo *type) return *b ? "yes" : "no"; } -Bool_namespace_t Bool_type = { +public Bool_namespace_t Bool_type = { .type={ .size=sizeof(bool), .align=alignof(bool), |
