]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/data_roots.hpp
audio.engine.test: cleanup using
[factor.git] / vm / data_roots.hpp
index a7c702408c4e7b92931e4d294de08acb987a9d10..c0e4ce68f36fdfb018547ef8e73fdf01480f2d59 100644 (file)
@@ -18,15 +18,6 @@ template <typename Type> struct data_root : public tagged<Type> {
     push();
   }
 
-  const data_root<Type>& operator=(const Type* x) {
-    tagged<Type>::operator=(x);
-    return *this;
-  }
-  const data_root<Type>& operator=(const cell& x) {
-    tagged<Type>::operator=(x);
-    return *this;
-  }
-
   ~data_root() {
     parent->data_roots.pop_back();
   }