Remove inline from many of the mem.* procedures

This commit is contained in:
gingerBill
2019-02-04 12:15:51 +00:00
parent d1e29400d3
commit fa5d00521b
2 changed files with 5 additions and 6 deletions
-1
View File
@@ -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;