mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Cosmetic.
This commit is contained in:
@@ -281,13 +281,13 @@ STAmount::STAmount(const char* name, int64 value) : SerializedType(name), mOffse
|
||||
{
|
||||
if (value >= 0)
|
||||
{
|
||||
mIsNegative = false;
|
||||
mValue = static_cast<uint64>(value);
|
||||
mIsNegative = false;
|
||||
mValue = static_cast<uint64>(value);
|
||||
}
|
||||
else
|
||||
{
|
||||
mIsNegative = true;
|
||||
mValue = static_cast<uint64>(-value);
|
||||
mIsNegative = true;
|
||||
mValue = static_cast<uint64>(-value);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user