From 374c70c6cb3e27a53134a14b737af956ecfc739e Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 13 Aug 2017 07:53:04 +0000 Subject: stringio.c: suppress a warning [ci skip] * ext/stringio/stringio.c (strio_read): suppress an implicit-fallthrough warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59583 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/stringio') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 363b363261..026a1faaa9 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -1376,6 +1376,7 @@ strio_read(int argc, VALUE *argv, VALUE self) StringValue(str); rb_str_modify(str); } + /* fall through */ case 1: if (!NIL_P(argv[0])) { len = NUM2LONG(argv[0]); -- cgit v1.2.3