remove illegal copy op

Can bypass freeze/thaw
This commit is contained in:
Michael Davidsaver
2013-08-30 11:50:52 -04:00
parent 11e91ac3fa
commit 01b8e69e4b

View File

@@ -570,16 +570,6 @@ public:
return *this;
}
template<typename E1>
shared_vector& operator=(const shared_vector<E1>& o)
{
if(&o!=this) {
this->base_t::operator=(o);
m_vtype = o.m_vtype;
}
return *this;
}
size_t max_size() const{return (size_t)-1;}
pointer data() const{