Bring in a bunch of cmake settings from conflict-set

This commit is contained in:
2025-05-23 12:43:25 -04:00
parent 1217ded8a7
commit 4240894318
4 changed files with 79 additions and 13 deletions

View File

@@ -550,7 +550,7 @@ inline PRESERVE_NONE WeaselJsonStatus n_string_following_escape(Parser3 *self) {
case 'n':
case 'r':
case 't':
*self->writeBuf++ = tables.unescape[*self->buf++];
*self->writeBuf++ = tables.unescape[uint8_t(*self->buf++)];
self->pop();
if (auto s = self->push({N_STRING2})) {
return s;