Slightly better initialization

This commit is contained in:
Vasilii Rogin 2023-05-15 23:25:16 +03:00
parent c3426d19dc
commit 6f68a05e0a
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public:
ArrayElement()
: type(ArrayElementType::INT)
, value(
{ 0 }) {
{ .integerValue = 0 }) {
// Nothing here
};
@ -104,7 +104,7 @@ public:
ArrayElement(ArrayElement&& other)
: type(ArrayElementType::INT)
, value(
{ 0 })
{ .integerValue = 0 })
{
std::swap(type, other.type);
std::swap(value, other.value);