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

@@ -152,7 +152,7 @@ private:
};
template <typename Handler>
Handler::Input
static Handler::Input
createInput()
{
return typename Handler::Input{};
@@ -233,8 +233,9 @@ createInput<SubscribeHandler>()
{
SubscribeHandler::Input input{};
input.books =
std::vector<SubscribeHandler::OrderBook>{SubscribeHandler::OrderBook{ripple::Book{}, Account, true, true}};
input.books = std::vector<SubscribeHandler::OrderBook>{
SubscribeHandler::OrderBook{.book = ripple::Book{}, .taker = Account, .snapshot = true, .both = true}
};
return input;
}