From: Arnaud Giersch Date: Wed, 26 Feb 2020 10:35:39 +0000 (+0100) Subject: [sonar] Comment unused parameter. X-Git-Tag: v3.26~870 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a51fb54da663811a87a75acb1bf4d73aa9140b23 [sonar] Comment unused parameter. --- diff --git a/src/simix/popping_private.hpp b/src/simix/popping_private.hpp index ad153fd136..daba0f963d 100644 --- a/src/simix/popping_private.hpp +++ b/src/simix/popping_private.hpp @@ -108,11 +108,11 @@ SIMIX_MARSHAL(float, d) SIMIX_MARSHAL(double, d) SIMIX_MARSHAL(FPtr, fp) -inline void unmarshal(type, u_smx_scalar const& simcall) +inline void unmarshal(type, u_smx_scalar const& /*simcall*/) { /* Nothing to do for void data */ } -inline void unmarshal_raw(type, u_smx_scalar const& simcall) +inline void unmarshal_raw(type, u_smx_scalar const& /*simcall*/) { /* Nothing to do for void data */ } @@ -177,7 +177,7 @@ template inline typename std::remove_reference::type unmarshal_raw( return unmarshal(type(), simcall); } -template inline void marshal_args(smx_simcall_t simcall) +template inline void marshal_args(smx_simcall_t /*simcall*/) { /* Nothing to do when no args */ }