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

@@ -78,10 +78,10 @@ STIssue::getText() const
return asset_.getText();
}
Json::Value
json::Value
STIssue::getJson(JsonOptions) const
{
Json::Value jv;
json::Value jv;
asset_.setJson(jv);
return jv;
}
@@ -132,7 +132,7 @@ STIssue::move(std::size_t n, void* buf)
}
STIssue
issueFromJson(SField const& name, Json::Value const& v)
issueFromJson(SField const& name, json::Value const& v)
{
return STIssue{name, assetFromJson(v)};
}