Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Missing "override".
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 2 May 2023 14:22:02 +0000 (16:22 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 2 May 2023 14:39:20 +0000 (16:39 +0200)
include/simgrid/plugins/operation.hpp

index bf6a4ed..acd7ddd 100644 (file)
@@ -78,7 +78,7 @@ private:
   simgrid::s4u::Host* host_;
 
   ExecOp(const std::string& name);
-  void execute();
+  void execute() override;
 
 public:
   static ExecOpPtr init(const std::string& name);
@@ -93,7 +93,7 @@ private:
   simgrid::s4u::Host* destination_;
 
   CommOp(const std::string& name);
-  void execute();
+  void execute() override;
 
 public:
   static CommOpPtr init(const std::string& name);
@@ -104,4 +104,4 @@ public:
   void set_bytes(double bytes);
 };
 } // namespace simgrid::plugins
-#endif
\ No newline at end of file
+#endif