diff options
| author | gingerBill <bill@gingerbill.org> | 2022-10-19 16:59:38 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-10-19 16:59:38 +0100 |
| commit | 098f51aa800a8d2efd06ea54911b8ec067c586ed (patch) | |
| tree | b7312eef26c7b7895fd25291bafdce997bcd9777 /src/big_int.cpp | |
| parent | 765969e6a3c449b4fab8da0b5b672a5a436010c9 (diff) | |
Allow `transmute` to be constant for integers of the same internal endianness
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 5509545ca..d8b3e63a7 100644 --- a/src/big_int.cpp +++ b/src/big_int.cpp @@ -71,7 +71,7 @@ void big_int_and (BigInt *dst, BigInt const *x, BigInt const *y); void big_int_and_not(BigInt *dst, BigInt const *x, BigInt const *y); void big_int_xor (BigInt *dst, BigInt const *x, BigInt const *y); void big_int_or (BigInt *dst, BigInt const *x, BigInt const *y); -void big_int_not (BigInt *dst, BigInt const *x, u64 bit_count, bool is_signed); +void big_int_not (BigInt *dst, BigInt const *x, i32 bit_count, bool is_signed); void big_int_add_eq(BigInt *dst, BigInt const *x); |