Skip to content

Commit

Permalink
fix: rnt_array was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed May 1, 2024
1 parent 1ca3536 commit b7236ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unicode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ada_really_inline bool has_tabs_or_newline(
* @DenisYaroshevskiy
*/
static uint8_t rnt_array[16] = {1, 0, 0, 0, 0, 0, 0, 0,
9, 10, 0, 0, 13, 0, 0, 0};
0, 9, 10, 0, 0, 13, 0, 0};
const uint8x16_t rnt = vld1q_u8(rnt_array);
// m['0xd', '0xa', '0x9']
uint8x16_t running{0};
Expand Down

0 comments on commit b7236ca

Please sign in to comment.