style: More clang-tidy identifier renaming (#7290)

This commit is contained in:
Alex Kremer
2026-05-20 22:31:15 +01:00
committed by GitHub
parent 8c0080020f
commit a830ab10ef
160 changed files with 1726 additions and 1746 deletions

View File

@@ -120,7 +120,7 @@ class WSClientImpl : public WSClient
std::condition_variable cv_;
std::list<std::shared_ptr<Msg>> msgs_;
unsigned rpc_version_;
unsigned rpcVersion_;
void
cleanup()
@@ -157,7 +157,7 @@ public:
, thread_([&] { ios_.run(); })
, stream_(ios_)
, ws_(stream_)
, rpc_version_(rpcVersion)
, rpcVersion_(rpcVersion)
{
try
{
@@ -197,7 +197,7 @@ public:
json::Value jp;
if (params)
jp = params;
if (rpc_version_ == 2)
if (rpcVersion_ == 2)
{
jp[jss::method] = cmd;
jp[jss::jsonrpc] = "2.0";
@@ -284,7 +284,7 @@ public:
[[nodiscard]] unsigned
version() const override
{
return rpc_version_;
return rpcVersion_;
}
private: