From ef50816330f19379fcee6bf34858ea1b68110e14 Mon Sep 17 00:00:00 2001 From: "kevin.larke" Date: Thu, 16 Apr 2020 09:27:58 -0400 Subject: [PATCH] cwEuCon.cpp : Commented out unused code to prevent warnings. --- cwEuCon.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cwEuCon.cpp b/cwEuCon.cpp index 4750dcb..bd650d5 100644 --- a/cwEuCon.cpp +++ b/cwEuCon.cpp @@ -716,13 +716,14 @@ cw::rc_t cw::eucon::exec( handle_t h, unsigned sockTimeOutMs ) bool cw::eucon::areMsgsWaiting( handle_t h ) { - eucon_t* p = _handleToPtr(h); + //eucon_t* p = _handleToPtr(h); + return false; } cw::rc_t cw::eucon::getMsgs( handle_t h, msgCallback_t cbFunc, void* cbArg ) { rc_t rc = kOkRC; - eucon_t* p = _handleToPtr(h); + //eucon_t* p = _handleToPtr(h); return rc; } @@ -731,7 +732,7 @@ cw::rc_t cw::eucon::getMsgs( handle_t h, msgCallback_t cbFunc, void* cbArg ) cw::rc_t cw::eucon::sendCtlMsg( handle_t h, unsigned ctlTId, unsigned channel, unsigned ivalue, float fvalue ) { rc_t rc = kOkRC; - eucon_t* p = _handleToPtr(h); + //eucon_t* p = _handleToPtr(h); return rc; }