cmJSONHelpers.h: Remove useless cmStrCat() call

This commit is contained in:
Alex Turbov
2024-08-13 22:35:09 +04:00
parent 5096ea7a92
commit e7dcd51a61

View File

@@ -339,7 +339,7 @@ struct cmJSONHelperBuilder
out.clear();
bool success = true;
for (auto const& key : value->getMemberNames()) {
state->push_stack(cmStrCat(key, ""), &(*value)[key]);
state->push_stack(key, &(*value)[key]);
if (!filter(key)) {
state->pop_stack();
continue;