From dbb2e33eef72ffd720f83a312655918307546833 Mon Sep 17 00:00:00 2001 From: usa Date: Sat, 12 Jul 2003 08:02:26 +0000 Subject: * struct.c (struct_entry): add prototype to avoid VC++ warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 18 +++++++++++------- struct.c | 1 + version.h | 6 +++--- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3f43ce03d9..58657692a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,18 +1,22 @@ +Sat Jul 12 17:01:28 2003 NAKAMURA Usaku + + * struct.c (struct_entry): add prototype to avoid VC++ warnings. + Sat Jul 12 04:43:57 2003 why the lucky stiff - * ext/syck/emitter.c: new emitter code. + * ext/syck/emitter.c: new emitter code. - * ext/syck/rubyext.c: Emitter class. + * ext/syck/rubyext.c: Emitter class. - * lib/yaml.rb: Load Syck emitter, if available. + * lib/yaml.rb: Load Syck emitter, if available. - * lib/yaml/stream.rb: ditto. + * lib/yaml/stream.rb: ditto. - * lib/yaml/baseemitter.rb: underlying class for all emitters. + * lib/yaml/baseemitter.rb: underlying class for all emitters. - * lib/yaml/rubytypes.rb: use BaseEmitter abstraction. + * lib/yaml/rubytypes.rb: use BaseEmitter abstraction. - * lib/yaml/emitter.rb: ditto. + * lib/yaml/emitter.rb: ditto. Sat Jul 12 01:21:54 2003 Nobuyoshi Nakada diff --git a/struct.c b/struct.c index 32ea8f525c..474b267cf2 100644 --- a/struct.c +++ b/struct.c @@ -517,6 +517,7 @@ rb_struct_aset(s, idx, val) return RSTRUCT(s)->ptr[i] = val; } +static VALUE struct_entry _((VALUE, long)); static VALUE struct_entry(s, n) VALUE s; diff --git a/version.h b/version.h index e255998915..5975a51ed5 100644 --- a/version.h +++ b/version.h @@ -1,11 +1,11 @@ #define RUBY_VERSION "1.8.0" -#define RUBY_RELEASE_DATE "2003-07-11" +#define RUBY_RELEASE_DATE "2003-07-12" #define RUBY_VERSION_CODE 180 -#define RUBY_RELEASE_CODE 20030711 +#define RUBY_RELEASE_CODE 20030712 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2003 #define RUBY_RELEASE_MONTH 7 -#define RUBY_RELEASE_DAY 11 +#define RUBY_RELEASE_DAY 12 -- cgit v1.2.3