mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
refactor: Enable remaining clang-tidy cppcoreguidelines checks (#6538)
This commit is contained in:
@@ -179,8 +179,8 @@ partsFromString(std::string const& number)
|
||||
|
||||
bool negative = (match[1].matched && (match[1] == "-"));
|
||||
|
||||
std::uint64_t mantissa;
|
||||
int exponent;
|
||||
std::uint64_t mantissa = 0;
|
||||
int exponent = 0;
|
||||
|
||||
if (!match[4].matched) // integer only
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user