Skip to content

Commit

Permalink
Give up
Browse files Browse the repository at this point in the history
  • Loading branch information
flashultra committed Dec 22, 2024
1 parent ab17d83 commit 432a3d1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions std/haxe/math/bigint/MutableBigInt_.hx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ class MutableBigInt_ extends BigInt_ {
**/
public function setFromInt(value:Int):Void {
ensureCapacity(1, false);
#if cppia
if ( m_data == null) return;
#end
m_data.set(0, value);
m_count = 1;
}
Expand Down Expand Up @@ -139,9 +136,6 @@ class MutableBigInt_ extends BigInt_ {
}
var neg = value.get(length - 1) >>> 31;
ensureCapacity(length + neg, false);
#if cppia
if ( m_data == null) return;
#end
m_data.set(length + neg - 1, 0);
MultiwordArithmetic.copy(m_data, value, length);
m_count = length + neg;
Expand Down

0 comments on commit 432a3d1

Please sign in to comment.