mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
- Incorrectly try compile time int check on vector #2815
- Generating typeid from function gives incorrect typeid #2816 - Recursive definitions not discovered when initializer is access on other const #2817 - Slice overrun detected late hit codegen assert #2822
This commit is contained in:
@@ -930,9 +930,9 @@ module std::math::bigint @private;
|
||||
|
||||
|
||||
<*
|
||||
@param [&out] quotient
|
||||
@param [&inout] quotient
|
||||
@param [&in] bi2
|
||||
@param [&out] remainder
|
||||
@param [&inout] remainder
|
||||
*>
|
||||
fn void BigInt.single_byte_divide(&self, BigInt* bi2, BigInt* quotient, BigInt* remainder)
|
||||
{
|
||||
@@ -982,9 +982,9 @@ fn void BigInt.single_byte_divide(&self, BigInt* bi2, BigInt* quotient, BigInt*
|
||||
}
|
||||
|
||||
<*
|
||||
@param [&out] quotient
|
||||
@param [&inout] quotient
|
||||
@param [&in] other
|
||||
@param [&out] remainder
|
||||
@param [&inout] remainder
|
||||
*>
|
||||
fn void BigInt.multi_byte_divide(&self, BigInt* other, BigInt* quotient, BigInt* remainder)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user