diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-06 10:42:34 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-06 10:42:34 +0200 |
| commit | 4b36306674a8db103d123b079ac00d06e568d57e (patch) | |
| tree | c403a6eb5e8f071760b485fa221c132dd2bbe4ef /core/math | |
| parent | e870369c972be8054ee50ac441e5713b719c99a1 (diff) | |
Deprecate old @(deprecated) things.
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/big/private.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/big/private.odin b/core/math/big/private.odin index bb6b9497c..c42bad0c6 100644 --- a/core/math/big/private.odin +++ b/core/math/big/private.odin @@ -1370,8 +1370,8 @@ _private_int_div_recursive :: proc(quotient, remainder, a, b: ^Int, allocator := /* Slower bit-bang division... also smaller. + Prefer `_int_div_school` for speed. */ -@(deprecated="Use `_int_div_school`, it's 3.5x faster.") _private_int_div_small :: proc(quotient, remainder, numerator, denominator: ^Int) -> (err: Error) { ta, tb, tq, q := &Int{}, &Int{}, &Int{}, &Int{} |