diff options
Diffstat (limited to 'src/resolver/dir_info.zig')
-rw-r--r-- | src/resolver/dir_info.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolver/dir_info.zig b/src/resolver/dir_info.zig index c175cf2f2..5d3c53f96 100644 --- a/src/resolver/dir_info.zig +++ b/src/resolver/dir_info.zig @@ -71,4 +71,4 @@ pub fn getEnclosingBrowserScope(i: *const DirInfo) ?*DirInfo { // 2. Don't expect a provided key to exist after it's queried // 3. Store whether a directory has been queried and whether that query was successful. // 4. Allocate onto the https://en.wikipedia.org/wiki/.bss#BSS_in_C instead of the heap, so we can avoid memory leaks -pub const HashMap = allocators.BSSMap(DirInfo, Fs.Preallocate.Counts.dir_entry, false, 128); +pub const HashMap = allocators.BSSMap(DirInfo, Fs.Preallocate.Counts.dir_entry, false, 128, true); |