Skip to content

Commit 99bf366

Browse files
committed
removed an unused type
1 parent bce56b5 commit 99bf366

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/html/document.zig

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const selector_debug = @import("../debug/selector_debug.zig");
99
const instrumentation = @import("../debug/instrumentation.zig");
1010
const parser = @import("parser.zig");
1111
const node_api = @import("node.zig");
12-
const tags = @import("tags.zig");
1312
const common = @import("../common.zig");
1413

1514
// SAFETY: Document owns `source` bytes for the life of nodes/iterators.
@@ -21,11 +20,6 @@ pub const InvalidIndex: u32 = common.InvalidIndex;
2120
const QueryAccelMinBudgetBytes: usize = 4096;
2221
const QueryAccelBudgetDivisor: usize = 20; // 5%
2322

24-
const IndexSpan = struct {
25-
start: u32 = 0,
26-
len: u32 = 0,
27-
};
28-
2923
const QueryAccelIdLookup = union(enum) {
3024
unavailable,
3125
miss,

0 commit comments

Comments
 (0)