diff options
author | B. Stack <bgstack15@gmail.com> | 2022-09-07 14:55:03 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-09-07 14:55:03 -0400 |
commit | b556adb897f18e500bb4d8f89c81c0f0764f1ff2 (patch) | |
tree | b0047c655d52e4e479ceb73c713414f8d0744c38 /zen/json.h | |
parent | Merge branch 'b11.24' into 'master' (diff) | |
download | FreeFileSync-b556adb897f18e500bb4d8f89c81c0f0764f1ff2.tar.gz FreeFileSync-b556adb897f18e500bb4d8f89c81c0f0764f1ff2.tar.bz2 FreeFileSync-b556adb897f18e500bb4d8f89c81c0f0764f1ff2.zip |
add upstream 11.25
Diffstat (limited to 'zen/json.h')
-rw-r--r-- | zen/json.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ namespace { UtfDecoder<impl::Char16> decoder(utf16Buf.c_str(), utf16Buf.size()); while (std::optional<impl::CodePoint> cp = decoder.getNext()) - impl::codePointToUtf<char>(*cp, [&](char c) { output += c; }); + codePointToUtf<char>(*cp, [&](char c) { output += c; }); utf16Buf.clear(); } }; |