mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-20 00:16:47 +00:00
Remove inline from many of the mem.* procedures
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user