Skip to content

Commit 432a3d1

Browse files
committed
Give up
1 parent ab17d83 commit 432a3d1

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

std/haxe/math/bigint/MutableBigInt_.hx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ class MutableBigInt_ extends BigInt_ {
4949
**/
5050
public function setFromInt(value:Int):Void {
5151
ensureCapacity(1, false);
52-
#if cppia
53-
if ( m_data == null) return;
54-
#end
5552
m_data.set(0, value);
5653
m_count = 1;
5754
}
@@ -139,9 +136,6 @@ class MutableBigInt_ extends BigInt_ {
139136
}
140137
var neg = value.get(length - 1) >>> 31;
141138
ensureCapacity(length + neg, false);
142-
#if cppia
143-
if ( m_data == null) return;
144-
#end
145139
m_data.set(length + neg - 1, 0);
146140
MultiwordArithmetic.copy(m_data, value, length);
147141
m_count = length + neg;

0 commit comments

Comments
 (0)