aboutsummaryrefslogtreecommitdiff
path: root/src/big_int.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-02-04 12:15:51 +0000
committergingerBill <bill@gingerbill.org>2019-02-04 12:15:51 +0000
commitfa5d00521b90583939282f5668b88f77f49d157f (patch)
tree1f69163c08fecef274380b5c94f01f9bb6537fd2 /src/big_int.cpp
parentd1e29400d3edcace9f86ff80eecd0f94954e7aa2 (diff)
Remove `inline` from many of the mem.* procedures
Diffstat (limited to 'src/big_int.cpp')
-rw-r--r--src/big_int.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp
index f6b9b2eca..dc3d50589 100644
--- a/src/big_int.cpp
+++ b/src/big_int.cpp
@@ -441,7 +441,6 @@ void big_int_add(BigInt *dst, BigInt const *x, BigInt const *y) {
u64 first_word = dst->d.word;
big_int_alloc(dst, 0, gb_max(x->len, y->len)+1);
- GB_ASSERT(dst->len > 1);
dst->d.words[0] = first_word;
i32 i = 1;