1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_thread_raise): prototype; avoid VC++ warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2003-10-01 18:26:11 +00:00
parent 35ea1379e3
commit 8caf81f1ea
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Oct 2 03:25:01 2003 NAKAMURA Usaku <usa@ruby-lang.org>
* eval.c (rb_thread_raise): prototype; avoid VC++ warning.
Thu Oct 2 01:32:46 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_f_block_given_p): real required condition is

2
eval.c
View file

@ -8188,7 +8188,7 @@ rb_thread_check(data)
return (rb_thread_t)RDATA(data)->data;
}
static VALUE rb_thread_raise _((int, VALUE*, rb_thread_t));
static VALUE rb_thread_raise _((int, VALUE*, volatile rb_thread_t));
static int th_raise_argc;
static VALUE th_raise_argv[2];