aboutsummaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-06 10:42:34 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-06 10:42:34 +0200
commit4b36306674a8db103d123b079ac00d06e568d57e (patch)
treec403a6eb5e8f071760b485fa221c132dd2bbe4ef /core/math
parente870369c972be8054ee50ac441e5713b719c99a1 (diff)
Deprecate old @(deprecated) things.
Diffstat (limited to 'core/math')
-rw-r--r--core/math/big/private.odin2
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{}