Maybe this will fix Windows build
This commit is contained in:
parent
6f68a05e0a
commit
79d40f500a
|
@ -95,7 +95,7 @@ public:
|
||||||
ArrayElement()
|
ArrayElement()
|
||||||
: type(ArrayElementType::INT)
|
: type(ArrayElementType::INT)
|
||||||
, value(
|
, value(
|
||||||
{ .integerValue = 0 }) {
|
{ 0 }) {
|
||||||
// Nothing here
|
// Nothing here
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ public:
|
||||||
ArrayElement(ArrayElement&& other)
|
ArrayElement(ArrayElement&& other)
|
||||||
: type(ArrayElementType::INT)
|
: type(ArrayElementType::INT)
|
||||||
, value(
|
, value(
|
||||||
{ .integerValue = 0 })
|
{ 0 })
|
||||||
{
|
{
|
||||||
std::swap(type, other.type);
|
std::swap(type, other.type);
|
||||||
std::swap(value, other.value);
|
std::swap(value, other.value);
|
||||||
|
|
Loading…
Reference in New Issue