middle-end/97207 - implement move assign for auto_vec<>
authorRichard Biener <rguenther@suse.de>
Fri, 25 Sep 2020 11:59:15 +0000 (13:59 +0200)
committerRichard Biener <rguenther@suse.de>
Fri, 25 Sep 2020 12:51:26 +0000 (14:51 +0200)
This implements the missing move assignment to make std::swap work
on auto_vec<>

2020-09-25  Richard Biener  <rguenther@suse.de>

PR middle-end/97207
* vec.h (auto_vec<T>::operator=(auto_vec<T>&&)): Implement.

gcc/vec.h

index d73d865..d8c7cda 100644 (file)
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -1546,7 +1546,13 @@ public:
       this->m_vec = r.m_vec;
       r.m_vec = NULL;
     }
-  void operator= (auto_vec&&) = delete;
+  auto_vec& operator= (auto_vec&& r)
+    {
+      this->release ();
+      this->m_vec = r.m_vec;
+      r.m_vec = NULL;
+      return *this;
+    }
 };