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

* eval.c (unknown_node): add volatile directive to prototype.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-05-13 14:33:02 +00:00
parent 74eab43d49
commit 8726077bc1
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Fri May 13 23:32:55 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (unknown_node): add volatile directive to prototype.
Fri May 13 17:50:49 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* variable.c (generic_ivar_get): rb_attr_get should not warn.
@ -5,7 +9,7 @@ Fri May 13 17:50:49 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Thu May 12 17:41:00 2005 NARUSE, Yui <naruse@ruby-lang.org>
* ext/nkf/nkf-utf8/nkf.c: follow nkf 2.0.5
* ext/nkf/nkf-utf8/nkf.c: follow nkf 2.0.5
Thu May 12 16:50:40 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>

2
eval.c
View file

@ -2760,7 +2760,7 @@ class_prefix(self, cpath)
NORETURN(static void return_jump _((VALUE)));
NORETURN(static void break_jump _((VALUE)));
NORETURN(static void unknown_node _((NODE *)));
NORETURN(static void unknown_node _((NODE * volatile)));
static void
unknown_node(node)