diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-15 00:32:44 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-15 00:32:44 +0000 |
| commit | 6673db1b801445192de74ab7e2df632f2885036c (patch) | |
| tree | 562256c2dbd50ef2aad7e127d5c60808243f5a6c | |
| parent | 4688d51e1d106bd910c19ca43c3e893ca00f9dbe (diff) | |
| download | ruby-6673db1b801445192de74ab7e2df632f2885036c.tar.gz ruby-6673db1b801445192de74ab7e2df632f2885036c.tar.xz ruby-6673db1b801445192de74ab7e2df632f2885036c.zip | |
* ext/enumerator/enumerator.c (enumerator_each): avoid VC++ warning.
* ext/syck/syck.h: include stdio.h for definition of FILE.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | ext/enumerator/enumerator.c | 2 | ||||
| -rw-r--r-- | ext/syck/syck.h | 1 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Wed Oct 15 09:30:34 2003 NAKAMURA Usaku <usa@ruby-lang.org> + + * ext/enumerator/enumerator.c (enumerator_each): avoid VC++ warning. + + * ext/syck/syck.h: include stdio.h for definition of FILE. + Wed Oct 15 08:09:07 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net> * ext/syck/bytecode.c: Checkin of YAML bytecode support. diff --git a/ext/enumerator/enumerator.c b/ext/enumerator/enumerator.c index 65a1ea3fa..a4a0222fb 100644 --- a/ext/enumerator/enumerator.c +++ b/ext/enumerator/enumerator.c @@ -162,7 +162,7 @@ enumerator_each(obj) rb_ivar_get(obj, id_enum_obj), rb_to_id(rb_ivar_get(obj, id_enum_method)), rb_ivar_get(obj, id_enum_args)); - val = rb_iterate(enumerator_iter, obj, rb_yield, 0); + val = rb_iterate((VALUE (*)_((VALUE)))enumerator_iter, obj, rb_yield, 0); rb_gc_force_recycle(obj); return val; } diff --git a/ext/syck/syck.h b/ext/syck/syck.h index 749757648..bd5c65858 100644 --- a/ext/syck/syck.h +++ b/ext/syck/syck.h @@ -16,6 +16,7 @@ #define SYCK_VERSION "0.41" #define YAML_DOMAIN "yaml.org,2002" +#include <stdio.h> #include "st.h" #if defined(__cplusplus) |
