Refactor JSON::writeDictionaryKey

This commit is contained in:
m-holger 2023-01-28 12:54:49 +00:00 committed by Jay Berkenbilt
parent 3dde66ddcd
commit 4c914aee96
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ JSON::writeDictionaryKey(
Pipeline* p, bool& first, std::string const& key, size_t depth)
{
writeNext(p, first, depth);
*p << "\"" << key << "\": ";
*p << std::string("\"") + key + "\": ";
}
void