streams: Accept URef obj for VectorReader unserialize

This commit is contained in:
MarcoFalke
2021-04-03 13:42:55 +02:00
parent 128b98fce3
commit fa2204f6ad
2 changed files with 12 additions and 1 deletions

View File

@@ -167,7 +167,7 @@ public:
}
template<typename T>
VectorReader& operator>>(T& obj)
VectorReader& operator>>(T&& obj)
{
// Unserialize from this stream
::Unserialize(*this, obj);