Skip to content
Snippets Groups Projects
Commit c3542141 authored by Henrik Stolzmann's avatar Henrik Stolzmann
Browse files

Tried to fix th warning: "variable 'nSendMsgs' set but not used"

````
Added the attribute "DUNE_UNUSED" to the variable "nSendMsgs" to avoid a
warning.
````
parent 16a76098
No related branches found
No related tags found
1 merge request!125Fix the warning: "variable 'nSendMsgs' set but not used"
......@@ -380,7 +380,8 @@ DDD_RET DDD_XferEnd(DDD::DDDContext& context)
XIModCpl **arrayXIModCpl = NULL;
int remXIModCpl;
XIAddCpl **arrayXIAddCpl = NULL;
int obsolete, nRecvMsgs, nSendMsgs;
int obsolete, nRecvMsgs;
DUNE_UNUSED int nSendMsgs;
XFERMSG *sendMsgs=NULL, *sm=NULL;
LC_MSGHANDLE *recvMsgs = NULL;
std::vector<DDD_HDR> localCplObjs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment