diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-12-23 22:26:55 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-12-23 22:26:55 +0900 |
| commit | c34aa8a63e1f6c23f4dd95120921f14c3f6ca492 (patch) | |
| tree | 29fadb951f0f254c761be66ff5d97e9570b7d4b3 | |
| parent | 2fbea74de5bdda32cdc99f8336fc3296e2c3b933 (diff) | |
| parent | b0dc163b5dadbdc8ef2241f3aa56a1eae428a22a (diff) | |
| download | mruby-c34aa8a63e1f6c23f4dd95120921f14c3f6ca492.tar.gz mruby-c34aa8a63e1f6c23f4dd95120921f14c3f6ca492.zip | |
Merge pull request #4197 from shuujii/suppress-struct-initializer-warn
Suppress a struct 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; |
