diff options
| author | Kenta Murata <mrkn@users.noreply.github.com> | 2020-05-22 13:49:08 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-22 13:49:08 +0900 |
| commit | f4f157fc81b940c0f76a01ee266a08e6bba69b6b (patch) | |
| tree | 357dca6cd03b7cdab65066c6bdfca03d8f5444e7 /array.c | |
| parent | ac395754c7a0d082ab118fe4848886fa14467d39 (diff) | |
Suppress warnings no inline ruby debug (#3107)
* Suppress unused warnings occurred due to -fno-inline
* Suppress warning occurred due to RUBY_DEBUG=1
Notes
Notes:
Merged-By: mrkn <mrkn@ruby-lang.org>
Diffstat (limited to 'array.c')
| -rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
