mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 23:05:46 +00:00
round-tripping escapes, again #5519
This commit is contained in:
parent
90f98d5791
commit
f91c3d9fd6
2 changed files with 3 additions and 4 deletions
|
@ -190,7 +190,7 @@ extern "C" {
|
|||
if (ch <= 32 || ch >= 127) {
|
||||
buff.reset();
|
||||
buffer.push_back('\\');
|
||||
buffer.push_back('\\'); // possibly replace by native non-escaped version?
|
||||
// buffer.push_back('\\'); // possibly replace by native non-escaped version?
|
||||
buffer.push_back('u');
|
||||
buffer.push_back('{');
|
||||
while (ch > 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue