summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-30 13:52:22 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-30 15:33:40 +0900
commita90d188b578333c7fb74e51ffe004a208196db82 (patch)
tree08927ced56ad0c66b9f4baf23e2d2f33a4ca5dda
parent1954a95f8bf71f61ce9996a0d8a34b18bb56da3e (diff)
Remove declarations of deprecated functions
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5377
-rw-r--r--include/ruby/internal/intern/error.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/ruby/internal/intern/error.h b/include/ruby/internal/intern/error.h
index b255abb82b..9c153cbac5 100644
--- a/include/ruby/internal/intern/error.h
+++ b/include/ruby/internal/intern/error.h
@@ -202,12 +202,6 @@ RBIMPL_ATTR_NORETURN()
void rb_error_frozen_object(VALUE what);
/**
- * @deprecated Does nothing. This method is deprecated and will be removed in
- * Ruby 3.2.
- */
-void rb_error_untrusted(VALUE);
-
-/**
* Queries if the passed object is frozen.
*
* @param[in] obj Target object to test frozen-ness.
@@ -217,12 +211,6 @@ void rb_error_untrusted(VALUE);
void rb_check_frozen(VALUE obj);
/**
- * @deprecated Does nothing. This method is deprecated and will be removed in
- * Ruby 3.2.
- */
-void rb_check_trusted(VALUE);
-
-/**
* Ensures that the passed object can be `initialize_copy` relationship. When
* you implement your own one you would better call this at the right beginning
* of your implementation.