mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Move a comment to the appropriate position.
The position of `/* fall through */` was moved by r52931. * insns.def (opt_case_dispatch): Move a comment to the appropriate position. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7d117c7046
commit
c48abea0c3
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
Mon Jan 4 08:10:44 2016 Yuichiro Kaneko <yui-knk@ruby-lang.org>
|
||||
|
||||
* insns.def (opt_case_dispatch): Move a comment to the
|
||||
appropriate position.
|
||||
[ci skip]
|
||||
|
||||
Sun Jan 3 23:55:13 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/rubygems/security.rb (DIGEST_ALGORITHM, KEY_ALGORITHM):
|
||||
|
|
|
@ -1266,10 +1266,10 @@ opt_case_dispatch
|
|||
key = FIXABLE(ival) ? LONG2FIX((long)ival) : rb_dbl2big(ival);
|
||||
}
|
||||
}
|
||||
case T_TRUE:
|
||||
case T_TRUE: /* fall through */
|
||||
case T_FALSE:
|
||||
case T_NIL:
|
||||
case T_SYMBOL: /* fall through */
|
||||
case T_SYMBOL:
|
||||
case T_FIXNUM:
|
||||
case T_BIGNUM:
|
||||
case T_STRING:
|
||||
|
|
Loading…
Reference in a new issue