diff --git a/src/sfall_arrays.cc b/src/sfall_arrays.cc index d7b9f4b..98b2fbb 100644 --- a/src/sfall_arrays.cc +++ b/src/sfall_arrays.cc @@ -95,7 +95,7 @@ public: ArrayElement() : type(ArrayElementType::INT) , value( - { .integerValue = 0 }) { + { 0 }) { // Nothing here }; @@ -104,7 +104,7 @@ public: ArrayElement(ArrayElement&& other) : type(ArrayElementType::INT) , value( - { .integerValue = 0 }) + { 0 }) { std::swap(type, other.type); std::swap(value, other.value);