From 140d7fd95d82d7156bbb798ad9732ff9f7e4f14c Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 8 Mar 2015 23:20:13 +0000 Subject: proc.c, vm.c: fix implicit conversions * proc.c (rb_mod_define_method): fix implicit conversion of visibility type. erred by -Werror=shorten-64-to-32. * vm.c (vm_define_method): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index da25fbd04b..b3b236b191 100644 --- a/vm.c +++ b/vm.c @@ -2267,7 +2267,7 @@ vm_define_method(rb_thread_t *th, VALUE obj, ID id, VALUE iseqval, rb_num_t is_singleton, rb_cref_t *cref) { VALUE klass = CREF_CLASS(cref); - int noex = CREF_VISI(cref); + rb_method_flag_t noex = (rb_method_flag_t)CREF_VISI(cref); rb_iseq_t *miseq; GetISeqPtr(iseqval, miseq); -- cgit v1.2.3