[12066] Optimize some parts for ++C

This commit is contained in:
stfx 2012-07-21 17:14:55 +02:00 committed by Schmoozerd
parent ba86b02dd4
commit 3707b04330
48 changed files with 163 additions and 163 deletions

View file

@ -60,7 +60,7 @@ void BigNumber::SetQword(uint64 val)
void BigNumber::SetBinary(const uint8* bytes, int len)
{
uint8 t[1000];
for (int i = 0; i < len; i++)
for (int i = 0; i < len; ++i)
t[i] = bytes[len - 1 - i];
BN_bin2bn(t, len, _bn);
}