diff options
| author | gingerBill <bill@gingerbill.org> | 2018-07-29 10:50:15 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-07-29 10:50:15 +0100 |
| commit | 6512a3e5f24a3aecb1451f921455a93231412104 (patch) | |
| tree | e784404bf3ad291c54314e9ab9690e9bd9da754f /src/big_int.cpp | |
| parent | 49f2124df0f644e183f0570dd047493678eaf9f1 (diff) | |
using Foo :: enum {A, B, C}; len(Foo)
Diffstat (limited to 'src/big_int.cpp')
| -rw-r--r-- | src/big_int.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp index f7f51df6a..e177763f8 100644 --- a/src/big_int.cpp +++ b/src/big_int.cpp @@ -510,7 +510,6 @@ void big_int_add(BigInt *dst, BigInt const *x, BigInt const *y) { u64 first_word = dst->d.word; big_int_alloc(dst, 0, bigger->len); - GB_ASSERT(dst->len > 1); dst->d.words[0] = first_word; i32 i = 0; |