PIVector2D =() fix

This commit is contained in:
2024-09-15 16:50:15 +03:00
parent 7a945f47b1
commit 9d4357c066

View File

@@ -103,7 +103,7 @@ public:
return *this;
}
inline Row & operator=(const PIVector<T> & other) {
const size_t sz = piMin<size_t>(sz, other.size());
const size_t sz = piMin<size_t>(sz_, other.size());
p_->_copyRaw(p_->data(st_), other.data(), sz);
return *this;
}