Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar asked to end this switch cases with an unconditional statement.
[simgrid.git] / src / mc / mc_base.cpp
index dbafa01..429a995 100644 (file)
@@ -111,8 +111,7 @@ bool actor_is_enabled(smx_actor_t actor)
 
       if (mutex->owner == nullptr)
         return true;
-      else
-        return mutex->owner->pid == req->issuer->pid;
+      return mutex->owner->pid == req->issuer->pid;
     }
 
     case SIMCALL_SEM_ACQUIRE: {