From 2ee43514b450a0e04e1622db07b67f73f70392c8 Mon Sep 17 00:00:00 2001 From: Brett Broadhurst Date: Mon, 30 Mar 2026 17:02:05 -0600 Subject: [PATCH] fix: iteration order for namespace declarations --- src/compile.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.zig b/src/compile.zig index a079bfb..8c7f8a8 100644 --- a/src/compile.zig +++ b/src/compile.zig @@ -219,7 +219,7 @@ pub const Module = struct { pub const Namespace = struct { parent: ?*Namespace, - decls: std.AutoHashMapUnmanaged(InternPool.Index, Decl), + decls: std.AutoArrayHashMapUnmanaged(InternPool.Index, Decl), pub const Decl = struct { tag: Tag,