Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplification: inline a virtual function that is never derivated
[simgrid.git] / src / surf / HostImpl.hpp
index 695e0c0..6734180 100644 (file)
@@ -51,8 +51,6 @@ class HostModel : public Model {
 public:
   HostModel() : Model() {}
 
-  HostImpl *createHost(const char *name, kernel::routing::NetCard *net, Cpu *cpu);
-
   virtual void adjustWeightOfDummyCpuActions();
   virtual Action *executeParallelTask(int host_nb, sg_host_t *host_list,
       double *flops_amount, double *bytes_amount, double rate);
@@ -223,8 +221,8 @@ public:
     {THROW_IMPOSSIBLE;} // FIXME: Host should not be a Resource
 
 public:
-  xbt_dynar_t storage_;
-  Cpu *cpu_;
+  xbt_dynar_t storage_        = nullptr;
+  Cpu* cpu_                   = nullptr;
   simgrid::s4u::Host* piface_ = nullptr;
 
   /** @brief Get the list of virtual machines on the current Host */