summaryrefslogtreecommitdiff
path: root/include/ruby/internal
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2025-12-08 13:25:52 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2025-12-26 17:02:42 +0900
commita41b1540291d1469caae58d2271f3671aee7431c (patch)
tree06dcf21c57c847b15c4c7a362b64ebc163313ae5 /include/ruby/internal
parentf84110e601399c389f6d0c4b3c59be97e6dff935 (diff)
Remove `rb_complex_polar` deprecated for 7 years
Diffstat (limited to 'include/ruby/internal')
-rw-r--r--include/ruby/internal/intern/complex.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ruby/internal/intern/complex.h b/include/ruby/internal/intern/complex.h
index e111bd8ced..1efc093631 100644
--- a/include/ruby/internal/intern/complex.h
+++ b/include/ruby/internal/intern/complex.h
@@ -87,10 +87,6 @@ VALUE rb_complex_new(VALUE real, VALUE imag);
*/
VALUE rb_complex_new_polar(VALUE abs, VALUE arg);
-RBIMPL_ATTR_DEPRECATED(("by: rb_complex_new_polar"))
-/** @old{rb_complex_new_polar} */
-VALUE rb_complex_polar(VALUE abs, VALUE arg);
-
RBIMPL_ATTR_PURE()
/**
* Queries the real part of the passed Complex.