Some tuning.

This commit is contained in:
JoelKatz
2013-01-12 04:44:41 -08:00
parent a62fb9a52f
commit 1b8f20eaa7
2 changed files with 3 additions and 5 deletions

View File

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