From cb895754c8764c701c835b22da035b5cd4618a79 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Fri, 11 Apr 2025 21:17:42 +0200 Subject: [PATCH] Size to store overload increas for msvc. --- src/compiler/compiler_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compiler_internal.h b/src/compiler/compiler_internal.h index 7173f932e..09dde5e13 100644 --- a/src/compiler/compiler_internal.h +++ b/src/compiler/compiler_internal.h @@ -613,7 +613,7 @@ typedef struct Decl_ bool attr_nopadding : 1; bool attr_compact : 1; bool resolved_attributes : 1; - OperatorOverload operator : 5; + OperatorOverload operator : 6; union { void *backend_ref;