summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-12 08:02:26 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-12 08:02:26 +0000
commitdbb2e33eef72ffd720f83a312655918307546833 (patch)
treeb9c634f353170ea1bc57c26435b78218a86857df
parenta706d6ddac4d79e20621e97ee83ad8ef919aebe6 (diff)
* 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
-rw-r--r--ChangeLog18
-rw-r--r--struct.c1
-rw-r--r--version.h6
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 <usa@ruby-lang.org>
+
+ * struct.c (struct_entry): add prototype to avoid VC++ warnings.
+
Sat Jul 12 04:43:57 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
- * 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 <nobu.nokada@softhome.net>
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