diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-28 11:43:45 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-28 11:43:45 +0000 |
| commit | 1659ccdceb4cae3e4fd127061279ee16abc7738d (patch) | |
| tree | 7445ac3213a9adc821840dd34260f32199701116 | |
| parent | 5a25498676dac24fe74cf920510f5959aeb3b0af (diff) | |
| download | ruby-1659ccdceb4cae3e4fd127061279ee16abc7738d.tar.gz ruby-1659ccdceb4cae3e4fd127061279ee16abc7738d.tar.xz ruby-1659ccdceb4cae3e4fd127061279ee16abc7738d.zip | |
* ext/syck/rubyext.c: get rid of warnings caused by a bug of VC.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/syck/rubyext.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Mon Mar 28 20:43:34 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/syck/rubyext.c: get rid of warnings caused by a bug of VC. + Mon Mar 28 16:00:12 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * ext/tk/lib/tkextlib/iwidgets/notebook.rb: fixed typo. diff --git a/ext/syck/rubyext.c b/ext/syck/rubyext.c index 1c6a087a0..ab4462fe2 100644 --- a/ext/syck/rubyext.c +++ b/ext/syck/rubyext.c @@ -783,6 +783,7 @@ syck_mark_parser(parser) /* * YAML::Syck::Parser.new */ +VALUE syck_parser_s_alloc _((VALUE)); VALUE syck_parser_s_alloc(class) VALUE class; @@ -1312,6 +1313,7 @@ syck_mark_emitter(emitter) /* * YAML::Syck::Emitter.new */ +VALUE syck_emitter_s_alloc _((VALUE)); VALUE syck_emitter_s_alloc(class) VALUE class; |
