mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
symbol.c (dsymbol_check): remove unneeded semi-colon
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d4e84dd0bf
commit
098c9a327f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sat Jul 26 05:54:54 2014 Eric Wong <e@80x24.org>
|
||||||
|
|
||||||
|
* symbol.c (dsymbol_check): remove unneeded semi-colon
|
||||||
|
|
||||||
Fri Jul 25 14:07:27 2014 Koichi Sasada <ko1@atdot.net>
|
Fri Jul 25 14:07:27 2014 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* gc.c: change objspace::rgengc::parent_object_is_old (boolean)
|
* gc.c: change objspace::rgengc::parent_object_is_old (boolean)
|
||||||
|
|
2
symbol.c
2
symbol.c
|
@ -414,7 +414,7 @@ dsymbol_check(const VALUE sym)
|
||||||
|
|
||||||
if (st_delete(global_symbols.str_id, (st_data_t *)&fstr, NULL) == 0) {
|
if (st_delete(global_symbols.str_id, (st_data_t *)&fstr, NULL) == 0) {
|
||||||
rb_bug("can't remove fstr from str_id (%s)", RSTRING_PTR(fstr));
|
rb_bug("can't remove fstr from str_id (%s)", RSTRING_PTR(fstr));
|
||||||
};
|
}
|
||||||
if (st_delete(global_symbols.id_str, (st_data_t *)&sym, NULL) == 0) {
|
if (st_delete(global_symbols.id_str, (st_data_t *)&sym, NULL) == 0) {
|
||||||
rb_bug("can't remove sym from id_sym (%s)", RSTRING_PTR(fstr));
|
rb_bug("can't remove sym from id_sym (%s)", RSTRING_PTR(fstr));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue