Cosmetic.

This commit is contained in:
Arthur Britto
2012-07-20 14:25:10 -07:00
parent 0aa415ec0f
commit 101ce61953

View File

@@ -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);
}
}