Removed irrelevant todo

This commit is contained in:
Stefan Müller 2024-05-20 00:56:52 +02:00
parent 18de900a38
commit 9c951073d9
1 changed files with 0 additions and 1 deletions

View File

@ -572,7 +572,6 @@ begin
Result := TBigInt.MultiplyAbsoluteValues(A, B, A.IsNegative <> B.IsNegative);
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;
var
i, j, digitShifts, bitShifts, reverseShift, len, newLength: Integer;