From 9c951073d9ed5e8b4c683e883184b93f9ab878f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Mon, 20 May 2024 00:56:52 +0200 Subject: [PATCH] Removed irrelevant todo --- UBigInt.pas | 1 - 1 file changed, 1 deletion(-) diff --git a/UBigInt.pas b/UBigInt.pas index 4c8505e..7d22c07 100644 --- a/UBigInt.pas +++ b/UBigInt.pas @@ -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;