1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-06-16 03:48:19 +00:00

iohelpers: forgotten styleup

This commit is contained in:
Mirek Kratochvil 2015-12-05 18:55:09 +01:00
parent dabb8fe1a1
commit 5b2bc564d1
2 changed files with 1 additions and 1 deletions

Binary file not shown.

@ -42,7 +42,7 @@ std::string escape_output (const std::string&s)
const char hex[] = "0123456789abcdef";
for (size_t i = 0; i < s.length(); ++i)
if (s[i] == '\\') r += "\\\\";
else if (s[i]>=0 && s[i] < 0x20) //utf-8 is "negative" here
else if (s[i] >= 0 && s[i] < 0x20) //utf-8 is "negative" here
switch (s[i]) {
case '\a':
r += "\\a";