diff options
author | B Stack <bgstack15@gmail.com> | 2019-09-03 20:50:36 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-09-03 20:50:36 +0000 |
commit | 89b5c8eb6012b7b4560958ad3c1aa5b187dafc94 (patch) | |
tree | afc54ec004ab863262f5621fbf282c42fdff29cc /zen/json.h | |
parent | Merge branch '10.14' into 'master' (diff) | |
parent | add upstream 10.15 (diff) | |
download | FreeFileSync-10.15.tar.gz FreeFileSync-10.15.tar.bz2 FreeFileSync-10.15.zip |
Merge branch '10.15' into 'master'10.15
add upstream 10.15
See merge request opensource-tracking/FreeFileSync!12
Diffstat (limited to 'zen/json.h')
-rw-r--r-- | zen/json.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -104,10 +104,10 @@ std::string jsonEscape(const std::string& str) else if (static_cast<unsigned char>(c) < 32) { - const auto hexDigits = hexify(c); + const auto [high, low] = hexify(c); output += "\\u00"; - output += hexDigits.first; - output += hexDigits.second; + output += high; + output += low; } else output += c; |