mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-08 21:55:04 +02:00
[arith_uint256] Avoid unnecessary this-copy using prefix operator
This commit is contained in:
@@ -85,7 +85,7 @@ public:
|
|||||||
base_uint ret;
|
base_uint ret;
|
||||||
for (int i = 0; i < WIDTH; i++)
|
for (int i = 0; i < WIDTH; i++)
|
||||||
ret.pn[i] = ~pn[i];
|
ret.pn[i] = ~pn[i];
|
||||||
ret++;
|
++ret;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user