diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-07-14 17:13:34 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-07-16 00:07:12 +0200 |
| commit | 630cc2e3097f2236a4c1191be6c955ec523d6f1a (patch) | |
| tree | 916e4d107f116d3c7597f95b19f1c7bfb93e76cb | |
| parent | 9160f139d399bce61c67a4ebc31dfdf1cc5d3e62 (diff) | |
Supress unused parameter warnings
| -rw-r--r-- | daemon/watchcommands.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/daemon/watchcommands.cpp b/daemon/watchcommands.cpp index 7fc84fc..1df811a 100644 --- a/daemon/watchcommands.cpp +++ b/daemon/watchcommands.cpp @@ -8,6 +8,8 @@ WatchCommands::WatchCommands(WatchConnector *watch, QObject *parent) : void WatchCommands::processMessage(uint endpoint, uint datalen, QByteArray data) { + Q_UNUSED(datalen); + logger()->debug() << __FUNCTION__ << endpoint << "/" << data.length(); switch (endpoint) { case WatchConnector::watchPHONE_VERSION: |
