Commit b2b48fbf2c

Ryan Liptak <squeek502@hotmail.com>
2022-01-20 16:19:16
Set EnvMap.Size to BufMap.BufMapHashMap.Size
Now that BufMap.BufMapHashMap is pub, we can just get Size directly
1 parent a206961
Changed files (1)
lib
lib/std/process.zig
@@ -307,8 +307,7 @@ pub const EnvMap = struct {
         else => std.BufMap,
     };
 
-    /// Matches what BufMap uses for its internal HashMap Size
-    pub const Size = u32;
+    pub const Size = std.BufMap.BufMapHashMap.Size;
 
     const Self = @This();