mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-24 07:30:30 +00:00
chore: Enable clang-tidy misc checks (#6655)
This commit is contained in:
@@ -17,7 +17,7 @@ struct Serializer_test : public beast::unit_test::suite
|
||||
0,
|
||||
1,
|
||||
std::numeric_limits<std::int32_t>::max()};
|
||||
for (std::int32_t value : values)
|
||||
for (std::int32_t const value : values)
|
||||
{
|
||||
Serializer s;
|
||||
s.add32(value);
|
||||
@@ -33,7 +33,7 @@ struct Serializer_test : public beast::unit_test::suite
|
||||
0,
|
||||
1,
|
||||
std::numeric_limits<std::int64_t>::max()};
|
||||
for (std::int64_t value : values)
|
||||
for (std::int64_t const value : values)
|
||||
{
|
||||
Serializer s;
|
||||
s.add64(value);
|
||||
|
||||
Reference in New Issue
Block a user