partialCopy: missing inverse for substructures

This commit is contained in:
Matej Sekoranja
2015-02-16 11:38:59 +01:00
parent 4473fe41c6
commit 1d58caf40d

View File

@@ -216,7 +216,7 @@ void SerializationHelper::partialCopy(PVStructure::shared_pointer const & from,
} else {
PVStructure::shared_pointer fromPVStructure = std::tr1::static_pointer_cast<PVStructure>(pvField);
PVStructure::shared_pointer toPVStructure = std::tr1::static_pointer_cast<PVStructure>(toPVFields[i]);
partialCopy(fromPVStructure, toPVStructure, maskBitSet);
partialCopy(fromPVStructure, toPVStructure, maskBitSet, inverse);
}
}
}