Removed irrelevant todo
This commit is contained in:
parent
18de900a38
commit
9c951073d9
|
@ -572,7 +572,6 @@ begin
|
||||||
Result := TBigInt.MultiplyAbsoluteValues(A, B, A.IsNegative <> B.IsNegative);
|
Result := TBigInt.MultiplyAbsoluteValues(A, B, A.IsNegative <> B.IsNegative);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// TODO: Shift operator could be implemented with a single Move call, but I do not want to change it without test cases.
|
|
||||||
operator shl(const A: TBigInt; const B: Integer): TBigInt;
|
operator shl(const A: TBigInt; const B: Integer): TBigInt;
|
||||||
var
|
var
|
||||||
i, j, digitShifts, bitShifts, reverseShift, len, newLength: Integer;
|
i, j, digitShifts, bitShifts, reverseShift, len, newLength: Integer;
|
||||||
|
|
Loading…
Reference in New Issue