[arith_uint256] Avoid unnecessary this-copy using prefix operator
This commit is contained in:
parent
bf3353de90
commit
22b4aae028
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public:
|
|||
base_uint ret;
|
||||
for (int i = 0; i < WIDTH; i++)
|
||||
ret.pn[i] = ~pn[i];
|
||||
ret++;
|
||||
++ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue