diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 22:15:45 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 22:15:45 -0500 |
| commit | 4a5c651d43f106b8e19b485646c64cb576a75cfb (patch) | |
| tree | 6fe289145c475cfc027bd9d8c98c80e8cbccf8c7 /builtins/bool.c | |
| parent | 95641182021b5ba76697f57706c12ad70340193f (diff) | |
Overload type names with constructor and namespace struct
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 fb807857..31e28d82 100644 --- a/builtins/bool.c +++ b/builtins/bool.c @@ -25,7 +25,7 @@ public CORD Bool__as_str(const bool *b, bool colorize, const TypeInfo *type) return *b ? "yes" : "no"; } -public Bool_namespace_t Bool_type = { +public Bool_namespace_t Bool = { .type={ .size=sizeof(bool), .align=__alignof__(bool), |
