Suppress warnings no inline ruby debug (#3107)

* Suppress unused warnings occurred due to -fno-inline

* Suppress warning occurred due to RUBY_DEBUG=1
This commit is contained in:
Kenta Murata 2020-05-22 13:49:08 +09:00 committed by GitHub
parent ac395754c7
commit f4f157fc81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2020-05-22 13:49:32 +09:00
Merged-By: mrkn <mrkn@ruby-lang.org>
3 changed files with 4 additions and 3 deletions

View file

@ -5269,7 +5269,7 @@ static VALUE
flatten(VALUE ary, int level)
{
long i;
VALUE stack, result, tmp, elt, vmemo;
VALUE stack, result, tmp = 0, elt, vmemo;
st_table *memo;
st_data_t id;