1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-03-25 21:35:39 +00:00
parent b4843d9a52
commit 2709170e96
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Mar 26 06:34:24 2016 NARUSE, Yui <naruse@ruby-lang.org>
* localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]
Fri Mar 25 16:40:48 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
* test/ruby/enc/test_case_mapping.rb: Additional tests title case;

View file

@ -89,7 +89,7 @@ enc_find_index(const char *name)
}
int
rb_locale_charmap_index(VALUE klass)
rb_locale_charmap_index(void)
{
return (int)locale_charmap(enc_find_index);
}