mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-26 14:05:51 +00:00
Some tuning.
This commit is contained in:
@@ -423,10 +423,8 @@ public:
|
||||
|
||||
uint256& operator=(const basetype& b)
|
||||
{
|
||||
for (int i = 0; i < WIDTH; i++)
|
||||
pn[i] = b.pn[i];
|
||||
|
||||
return *this;
|
||||
if (pn != b.pn)
|
||||
memcpy(pn, b.pn, sizeof(pn));
|
||||
}
|
||||
|
||||
uint256(uint64 b)
|
||||
|
||||
Reference in New Issue
Block a user