authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2022-01-20 07:19:16-08:00
committergravatar for johnnymarler@gmail.comJonathan Marler <johnnymarler@gmail.com> 2022-05-11 18:40:53-06:00
logb2b48fbf2cf84744e5d154b7d4f62b298f725f2b
tree2c168af66ca4a9fd3ec0b260d1967bc9c68e08fd
parenta2069612a5ee838fd88fdeb93f44c4d4fb1fcb8b

Set EnvMap.Size to BufMap.BufMapHashMap.Size

Now that BufMap.BufMapHashMap is pub, we can just get Size directly

1 files changed, 1 insertions(+), 2 deletions(-)

lib/std/process.zig+1-2
......@@ -307,8 +307,7 @@ pub const EnvMap = struct {
307307 else => std.BufMap,
308308 };
309309
310 /// Matches what BufMap uses for its internal HashMap Size
311 pub const Size = u32;
310 pub const Size = std.BufMap.BufMapHashMap.Size;
312311
313312 const Self = @This();
314313