Remove implicit conversion from LocalVector to PoolVector

This commit is contained in:
lawnjelly 2025-06-14 20:11:48 +01:00
parent 3c35777742
commit 035ffd8caa
4 changed files with 6 additions and 6 deletions

View file

@ -255,7 +255,7 @@ public:
return ret;
}
operator PoolVector<T>() const {
explicit operator PoolVector<T>() const {
PoolVector<T> pl;
if (size()) {
pl.resize(size());