From 047d6d996e540eaa50ec24b0751d147bfe2cacdb Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Tue, 2 Jan 2024 07:59:22 -0500 Subject: cbe: fix non-msvc externs and exports Closes #17817 --- src/InternPool.zig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/InternPool.zig') diff --git a/src/InternPool.zig b/src/InternPool.zig index e06597373e..2e690652a3 100644 --- a/src/InternPool.zig +++ b/src/InternPool.zig @@ -1005,11 +1005,11 @@ pub const Key = union(enum) { ty: Index, init: Index, decl: DeclIndex, - lib_name: OptionalNullTerminatedString = .none, - is_extern: bool = false, - is_const: bool = false, - is_threadlocal: bool = false, - is_weak_linkage: bool = false, + lib_name: OptionalNullTerminatedString, + is_extern: bool, + is_const: bool, + is_threadlocal: bool, + is_weak_linkage: bool, }; pub const ExternFunc = struct { -- cgit v1.2.3