diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-04-13 11:22:54 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-04-13 11:22:54 +0900 |
| commit | 4b09c7364e0bcbb8b20a2966312e87801c309f23 (patch) | |
| tree | 8205ec8c89868f918820485e8037610b8d582147 | |
| parent | 1905091634a6a2925c911484434448e568330626 (diff) | |
| download | mruby-4b09c7364e0bcbb8b20a2966312e87801c309f23.tar.gz mruby-4b09c7364e0bcbb8b20a2966312e87801c309f23.zip | |
Silence gcc initializer warning.
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ static inline void stack_clear(mrb_value *from, size_t count) { #ifndef MRB_NAN_BOXING - const mrb_value mrb_value_zero = { { 0 } }; + const mrb_value mrb_value_zero = { 0 }; while (count-- > 0) { *from++ = mrb_value_zero; |
