refactor: Enable clang-tidy readability-identifier-naming check (#6571)

This commit is contained in:
Alex Kremer
2026-05-03 11:31:53 +01:00
committed by GitHub
parent 182d844996
commit 8995564ed6
1498 changed files with 58858 additions and 58914 deletions

View File

@@ -127,15 +127,15 @@ STArray::getText() const
return r;
}
Json::Value
json::Value
STArray::getJson(JsonOptions p) const
{
Json::Value v = Json::arrayValue;
json::Value v = json::ArrayValue;
for (auto const& object : v_)
{
if (object.getSType() != STI_NOTPRESENT)
{
Json::Value& inner = v.append(Json::objectValue);
json::Value& inner = v.append(json::ObjectValue);
inner[object.getFName().getJsonName()] = object.getJson(p);
}
}