* 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
Родитель 35ea1379e3
Коммит 8caf81f1ea
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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
Просмотреть файл

@ -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];