diff options
author | 2023-04-26 01:31:09 -0700 | |
---|---|---|
committer | 2023-04-26 01:31:09 -0700 | |
commit | 97e2b133e3af4a92fc9dec07cfce31f414f698c4 (patch) | |
tree | 52dab74aa0df1f4e47cc31206b8eed34cc2dae8a /src/sourcemap/sourcemap.zig | |
parent | b957087fe64b41624ebf0edb278f0df6adf7d846 (diff) | |
parent | 149f097ffd9e819c665ecc24cb197b3921ca9a6d (diff) | |
download | bun-97e2b133e3af4a92fc9dec07cfce31f414f698c4.tar.gz bun-97e2b133e3af4a92fc9dec07cfce31f414f698c4.tar.zst bun-97e2b133e3af4a92fc9dec07cfce31f414f698c4.zip |
Merge branch 'main' into jarred/request-finalizerjarred/request-finalizer
Diffstat (limited to 'src/sourcemap/sourcemap.zig')
-rw-r--r-- | src/sourcemap/sourcemap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sourcemap/sourcemap.zig b/src/sourcemap/sourcemap.zig index b9d19b40d..f7a92a9c1 100644 --- a/src/sourcemap/sourcemap.zig +++ b/src/sourcemap/sourcemap.zig @@ -698,7 +698,7 @@ pub const LineOffsetTable = struct { if (c > 0x7F and columns_for_non_ascii.items.len == 0) { std.debug.assert(@ptrToInt( remaining.ptr, - ) > @ptrToInt( + ) >= @ptrToInt( contents.ptr, )); // we have a non-ASCII character, so we need to keep track of the |