diff options
| author | gingerBill <bill@gingerbill.org> | 2020-05-27 18:23:37 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-05-27 18:23:37 +0100 |
| commit | 1a0614b0d7f4b6010d79ac0a402d3c4c1f389529 (patch) | |
| tree | aeee6f81470fe8f9ed0d918008272ed081a099bd /src/big_int.cpp | |
| parent | 876820789e9dedaa6198c4cd145702485e3bd21c (diff) | |
Improve performance of tokenization and parsing
Diffstat (limited to 'src/big_int.cpp')
| -rw-r--r-- | src/big_int.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp index 1db9eafa7..5985f7eaf 100644 --- a/src/big_int.cpp +++ b/src/big_int.cpp @@ -64,7 +64,7 @@ void big_int_dealloc(BigInt *dst) { if (dst->len > 1) { gb_free(big_int_allocator(), dst->d.words); } - gb_zero_item(dst); + zero_item(dst); } BigInt big_int_make(BigInt const *b, bool abs=false); |