Fixed bug where lists failed to be deserialized correctly
This commit is contained in:
parent
72c8a504c5
commit
9ada998151
|
@ -279,7 +279,15 @@ namespace SHADE
|
||||||
for (int i = 0; i < LIST_SIZE; ++i)
|
for (int i = 0; i < LIST_SIZE; ++i)
|
||||||
{
|
{
|
||||||
// Create the object
|
// Create the object
|
||||||
System::Object^ obj = System::Activator::CreateInstance(elemType);
|
System::Object^ obj;
|
||||||
|
if (elemType == System::String::typeid)
|
||||||
|
{
|
||||||
|
obj = gcnew System::String("");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
obj = System::Activator::CreateInstance(elemType);
|
||||||
|
}
|
||||||
|
|
||||||
// Set it's value
|
// Set it's value
|
||||||
if (varAssignYaml(obj, node[i]))
|
if (varAssignYaml(obj, node[i]))
|
||||||
|
|
|
@ -167,6 +167,10 @@ namespace SHADE
|
||||||
{
|
{
|
||||||
valueObj = 0;
|
valueObj = 0;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -181,6 +185,10 @@ namespace SHADE
|
||||||
valueObj = FieldType();
|
valueObj = FieldType();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue