mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 16:32:14 -06:00
cmJSONHelpers.h: Remove useless cmStrCat() call
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user