mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* re.c (match_entry): add prototype to avoid VC++ warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9a9c8090d8
commit
3d43a19c74
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Jul 09 11:09:57 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* re.c (match_entry): add prototype to avoid VC++ warnings.
|
||||
|
||||
Mon Jul 7 10:22:46 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* ext/dbm/extconf.rb (gdbm_compat, qdbm): add check for gdbm_compat
|
||||
|
|
1
re.c
1
re.c
|
@ -967,6 +967,7 @@ match_aref(argc, argv, match)
|
|||
return rb_reg_nth_match(FIX2INT(idx), match);
|
||||
}
|
||||
|
||||
static VALUE match_entry _((VALUE, long));
|
||||
static VALUE
|
||||
match_entry(match, n)
|
||||
VALUE match;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#define RUBY_VERSION "1.8.0"
|
||||
#define RUBY_RELEASE_DATE "2003-07-07"
|
||||
#define RUBY_RELEASE_DATE "2003-07-09"
|
||||
#define RUBY_VERSION_CODE 180
|
||||
#define RUBY_RELEASE_CODE 20030707
|
||||
#define RUBY_RELEASE_CODE 20030709
|
||||
|
||||
#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 7
|
||||
#define RUBY_RELEASE_DAY 9
|
||||
|
|
Loading…
Reference in a new issue