diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-29 14:13:50 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-29 14:13:50 +0000 |
commit | ef9d1349512513eb4d0581ccceeeca3b0b6918c1 (patch) | |
tree | 2db10e1ecaf5258bc57c3bf480c004c329b454ea /ext | |
parent | edae1c72008cdd59f3ae3ed2a9172dc74e87e1b6 (diff) |
racc/cparse: private class
* ext/racc/cparse/cparse.c (Init_cparse): Racc::CparseParams is a
private class, undefine allocate and initialize methods.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/racc/cparse/cparse.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/racc/cparse/cparse.c b/ext/racc/cparse/cparse.c index 36ad959222..11b4bd5560 100644 --- a/ext/racc/cparse/cparse.c +++ b/ext/racc/cparse/cparse.c @@ -217,6 +217,9 @@ static VALUE reduce0 _((VALUE block_args, VALUE data, VALUE self)); # define D_printf(fmt,arg) #endif +#undef RUBY_UNTYPED_DATA_WARNING +#define RUBY_UNTYPED_DATA_WARNING 0 + static VALUE racc_cparse(VALUE parser, VALUE arg, VALUE sysdebug) { @@ -813,6 +816,9 @@ Init_cparse(void) rb_str_new2("$originalId: cparse.c,v 1.8 2006/07/06 11:39:46 aamine Exp $")); CparseParams = rb_define_class_under(Racc, "CparseParams", rb_cObject); + rb_undef_alloc_func(CparseParams); + rb_undef_method(CparseParams, "initialize"); + rb_undef_method(CparseParams, "initialize_copy"); RaccBug = rb_eRuntimeError; |