From: Martin Quinson Date: Tue, 12 Dec 2017 22:34:53 +0000 (+0100) Subject: sonar: remove unused local variables X-Git-Tag: v3.18~38 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/170d38bfaa9701d1b766f249b795a00e270cf28e sonar: remove unused local variables --- diff --git a/src/simix/smx_host.cpp b/src/simix/smx_host.cpp index f9fbcbcc0a..38667177cc 100644 --- a/src/simix/smx_host.cpp +++ b/src/simix/smx_host.cpp @@ -204,8 +204,6 @@ SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_li void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchro) { - simgrid::kernel::activity::ExecImplPtr exec = - boost::static_pointer_cast(synchro); XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro.get(), (int)synchro->state); /* Associate this simcall to the synchro */ @@ -226,9 +224,6 @@ void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_activity_t synchr void simcall_HANDLER_execution_test(smx_simcall_t simcall, smx_activity_t synchro) { - simgrid::kernel::activity::ExecImplPtr exec = - boost::static_pointer_cast(synchro); - simcall_execution_test__set__result(simcall, (synchro->state != SIMIX_WAITING && synchro->state != SIMIX_RUNNING)); if (simcall_execution_test__get__result(simcall)) { synchro->simcalls.push_back(simcall);