From 7cbd20062472012caee73f6a438978be97d2ace2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 17 Feb 2024 20:21:01 -0500 Subject: Clean up some binops to use generic ops --- builtins/bool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/bool.c') 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), -- cgit v1.2.3