mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
Fix banned word violation in CodeCoverage.zig
Replace std.StringHashMap with bun.StringHashMap as required by the codebase style guide. bun.StringHashMap has a faster `eql` implementation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -357,7 +357,7 @@ pub const Report = struct {
|
||||
try writer.writeAll(" <packages>\n");
|
||||
|
||||
// Group reports by directory
|
||||
var package_map = std.StringHashMap(std.ArrayListUnmanaged(*const Report)).init(this.allocator);
|
||||
var package_map = bun.StringHashMap(std.ArrayListUnmanaged(*const Report)).init(this.allocator);
|
||||
defer {
|
||||
var iter = package_map.iterator();
|
||||
while (iter.next()) |entry| {
|
||||
|
||||
Reference in New Issue
Block a user