summaryrefslogtreecommitdiff
path: root/zen/json.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/json.h')
-rw-r--r--zen/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/json.h b/zen/json.h
index 3a9d73f3..be2cfbab 100644
--- a/zen/json.h
+++ b/zen/json.h
@@ -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();
}
};
bgstack15