From c3426d19dc926e45c84872d6b4e7aacabcbc59d0 Mon Sep 17 00:00:00 2001 From: Vasilii Rogin <vasya@rogin.ru> Date: Mon, 15 May 2023 23:24:24 +0300 Subject: [PATCH] This should fix Windows build --- src/sfall_arrays.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sfall_arrays.cc b/src/sfall_arrays.cc index ee724eb..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);