diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-01 18:26:11 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-01 18:26:11 +0000 |
commit | d8b6d8b933720565cf111d5a72319489ed2effd6 (patch) | |
tree | 816b8676566824d5eda5b8f1c74131179b4469f9 | |
parent | 7c9366f8cfc72f716038af80bfc00bdc1635ec1d (diff) | |
download | ruby-d8b6d8b933720565cf111d5a72319489ed2effd6.tar.gz ruby-d8b6d8b933720565cf111d5a72319489ed2effd6.tar.xz ruby-d8b6d8b933720565cf111d5a72319489ed2effd6.zip |
* eval.c (rb_thread_raise): prototype; avoid VC++ warning.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | eval.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 @@ -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]; |