chore: Add clang-tidy 19 checks (#1774)

Fix #1664
This commit is contained in:
Alex Kremer
2024-12-09 16:27:53 +00:00
committed by GitHub
parent a7074dbf0f
commit 475e309f25
87 changed files with 3135 additions and 2711 deletions

View File

@@ -55,7 +55,7 @@ tag_invoke(boost::json::value_to_tag<TestInput>, boost::json::value const& jv)
if (jv.as_object().contains("limit"))
optLimit = jv.at("limit").as_int64();
return {boost::json::value_to<std::string>(jv.as_object().at("hello")), optLimit};
return {.hello = boost::json::value_to<std::string>(jv.as_object().at("hello")), .limit = optLimit};
}
// must be implemented as per rpc/common/Concepts.h