We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab17d83 commit 432a3d1Copy full SHA for 432a3d1
std/haxe/math/bigint/MutableBigInt_.hx
@@ -49,9 +49,6 @@ class MutableBigInt_ extends BigInt_ {
49
**/
50
public function setFromInt(value:Int):Void {
51
ensureCapacity(1, false);
52
- #if cppia
53
- if ( m_data == null) return;
54
- #end
55
m_data.set(0, value);
56
m_count = 1;
57
}
@@ -139,9 +136,6 @@ class MutableBigInt_ extends BigInt_ {
139
136
140
137
var neg = value.get(length - 1) >>> 31;
141
138
ensureCapacity(length + neg, false);
142
143
144
145
m_data.set(length + neg - 1, 0);
146
MultiwordArithmetic.copy(m_data, value, length);
147
m_count = length + neg;
0 commit comments