Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Redundant code (ctor is already inherited).
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 8 Apr 2021 08:15:07 +0000 (10:15 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 8 Apr 2021 08:15:07 +0000 (10:15 +0200)
src/kernel/resource/DiskImpl.hpp

index 226b2f1..9898cb7 100644 (file)
@@ -103,16 +103,6 @@ public:
   static xbt::signal<void(DiskAction const&, Action::State, Action::State)> on_state_change;
 
   using Action::Action;
-  /**
-   * @brief diskAction constructor
-   *
-   * @param model The DiskModel associated to this DiskAction
-   * @param cost The cost of this DiskAction in bytes
-   * @param failed [description]
-   * @param var The lmm variable associated to this DiskAction if it is part of a LMM component
-   */
-  DiskAction(kernel::resource::Model* model, double cost, bool failed, kernel::lmm::Variable* var)
-      : Action(model, cost, failed, var){};
   void set_state(simgrid::kernel::resource::Action::State state) override;
 };