Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Activity::State::ERRORED is never used.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 9 Feb 2020 20:48:25 +0000 (21:48 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 9 Feb 2020 20:48:25 +0000 (21:48 +0100)
include/simgrid/s4u/Activity.hpp

index c38231f..22e66db 100644 (file)
@@ -69,7 +69,9 @@ public:
   Activity& operator=(Activity const&) = delete;
 #endif
 
-  enum class State { INITED = 0, STARTING, STARTED, CANCELED, ERRORED, FINISHED };
+  enum class State { INITED = 0, STARTING, STARTED, CANCELED,
+      // ERRORED, // FIXME: state has never been used
+      FINISHED };
 
   /** Starts a previously created activity.
    *