statis_pointer_cast namespace fix

This commit is contained in:
Matej Sekoranja
2015-02-16 11:27:51 +01:00
parent d8ae646e70
commit 4473fe41c6

View File

@@ -130,8 +130,8 @@ void SerializationHelper::copyUnchecked(
}
case unionArray:
{
PVUnionArray::shared_pointer fromS = std::static_pointer_cast<PVUnionArray>(from);
PVUnionArray::shared_pointer toS = std::static_pointer_cast<PVUnionArray>(to);
PVUnionArray::shared_pointer fromS = std::tr1::static_pointer_cast<PVUnionArray>(from);
PVUnionArray::shared_pointer toS = std::tr1::static_pointer_cast<PVUnionArray>(to);
toS->replace(fromS->view());
break;
}