aboutsummaryrefslogtreecommitdiff
path: root/src/InternPool.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/InternPool.zig')
-rw-r--r--src/InternPool.zig10
1 files changed, 5 insertions, 5 deletions
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 {