Skip to content

Commit

Permalink
fix unicode mangling
Browse files Browse the repository at this point in the history
  • Loading branch information
Artikash committed Dec 14, 2020
1 parent 4783469 commit 457aed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/network.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace JSON
int i = 0;
for (; i < text.size(); ++i)
{
char ch = text[i];
auto ch = text[i];
if (ch == '"') return { unescaped, i + 1 };
if (ch == '\\')
{
Expand Down

0 comments on commit 457aed9

Please sign in to comment.