mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
eval.c: extra modifier
* eval.c (rb_longjmp): remove an extra modifier from the forward declaration to match the actual definition. [ruby-core:59451] [Bug #9338] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44483 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e4518c5bde
commit
243e581db0
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Jan 2 04:15:13 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_longjmp): remove an extra modifier from the forward
|
||||
declaration to match the actual definition. [ruby-core:59451]
|
||||
[Bug #9338]
|
||||
|
||||
Thu Jan 2 01:23:30 2014 Masaki Matsushita <glass.saga@gmail.com>
|
||||
|
||||
* vm_eval.c (method_missing): use ALLOCV_N() instead of
|
||||
|
|
2
eval.c
2
eval.c
|
@ -429,7 +429,7 @@ rb_frozen_class_p(VALUE klass)
|
|||
}
|
||||
}
|
||||
|
||||
NORETURN(static void rb_longjmp(int, volatile VALUE, volatile VALUE));
|
||||
NORETURN(static void rb_longjmp(int, volatile VALUE, VALUE));
|
||||
static VALUE get_errinfo(void);
|
||||
static VALUE get_thread_errinfo(rb_thread_t *th);
|
||||
|
||||
|
|
Loading…
Reference in a new issue