From 01b8e69e4b6937d75c4c468c87cc1335da054340 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 30 Aug 2013 11:50:52 -0400 Subject: [PATCH] remove illegal copy op Can bypass freeze/thaw --- pvDataApp/misc/sharedVector.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pvDataApp/misc/sharedVector.h b/pvDataApp/misc/sharedVector.h index cd8ee39..1a66986 100644 --- a/pvDataApp/misc/sharedVector.h +++ b/pvDataApp/misc/sharedVector.h @@ -570,16 +570,6 @@ public: return *this; } - template - shared_vector& operator=(const shared_vector& 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{