Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enforce "Rule-of-Three/Five".
[simgrid.git] / src / instr / instr_paje_containers.hpp
index 3e27997..da60460 100644 (file)
@@ -21,6 +21,8 @@ class Container {
   std::string name_; /* Unique name of this container */
 public:
   Container(std::string name, const std::string& type_name, Container* father);
+  Container(const Container&) = delete;
+  Container& operator=(const Container&) = delete;
   virtual ~Container();
 
   Type* type_; /* Type of this container */