mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-10 04:06:59 +00:00
Clang-tidy changes
This commit is contained in:
@@ -224,8 +224,8 @@ SHAMapInnerNode::sizeForWire() const
|
||||
{
|
||||
auto const n = getBranchCount();
|
||||
if (n < kCompressedThreshold)
|
||||
return n * (uint256::kBytes + sizeof(std::uint8_t)) + sizeof(std::uint8_t);
|
||||
return kBranchFactor * uint256::kBytes + sizeof(std::uint8_t);
|
||||
return (n * (uint256::kBytes + sizeof(std::uint8_t))) + sizeof(std::uint8_t);
|
||||
return (kBranchFactor * uint256::kBytes) + sizeof(std::uint8_t);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user