Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
builtin: cleanup in rune_map.v
Browse files Browse the repository at this point in the history
yuyi98 committed Nov 8, 2024

Verified

This commit was signed with the committer’s verified signature.
pradyunsg Pradyun Gedam
1 parent 22983a0 commit 6a27124
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vlib/builtin/rune_map.v
Original file line number Diff line number Diff line change
@@ -22,9 +22,7 @@ const rune_maps_ul = -3 // NOTE: this should *NOT* be used anywhere in rune_maps
// The overhead for representing it as an array of structs was ~28KB in .c, while with the flat array of ints, it is ~7.5KB.
// Given that xz can compress it to ~1.8KB, it could be probably represented in an even more compact way...
const rune_maps = [
i32(0x41), 0x5A, 0, 32,
0x61, 0x7A, -32, 0,
0xB5, 0xB5, 743, 0,
i32(0xB5), 0xB5, 743, 0,
0xC0, 0xD6, 0, 32,
0xD8, 0xDE, 0, 32,
0xE0, 0xF6, -32, 0,

0 comments on commit 6a27124

Please sign in to comment.