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

raise_closed_queue_error marked as NORETURN

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2018-01-18 09:44:47 +00:00
parent 3b787be52f
commit 0c932244fe

View file

@ -646,6 +646,8 @@ queue_closed_p(VALUE self)
return FL_TEST_RAW(self, QUEUE_CLOSED) != 0; return FL_TEST_RAW(self, QUEUE_CLOSED) != 0;
} }
NORETURN(static void raise_closed_queue_error(VALUE self));
static void static void
raise_closed_queue_error(VALUE self) raise_closed_queue_error(VALUE self)
{ {