mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
random.c, rational.c: make marshal methods private
* random.c (Init_Random), rational.c (Init_Rational): make marshal methods private. [Feature #6539] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c4f9dd2626
commit
4d73f95068
4 changed files with 14 additions and 9 deletions
4
random.c
4
random.c
|
@ -1463,8 +1463,8 @@ Init_Random(void)
|
|||
rb_define_method(rb_cRandom, "bytes", random_bytes, 1);
|
||||
rb_define_method(rb_cRandom, "seed", random_get_seed, 0);
|
||||
rb_define_method(rb_cRandom, "initialize_copy", random_copy, 1);
|
||||
rb_define_method(rb_cRandom, "marshal_dump", random_dump, 0);
|
||||
rb_define_method(rb_cRandom, "marshal_load", random_load, 1);
|
||||
rb_define_private_method(rb_cRandom, "marshal_dump", random_dump, 0);
|
||||
rb_define_private_method(rb_cRandom, "marshal_load", random_load, 1);
|
||||
rb_define_private_method(rb_cRandom, "state", random_state, 0);
|
||||
rb_define_private_method(rb_cRandom, "left", random_left, 0);
|
||||
rb_define_method(rb_cRandom, "==", random_equal, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue