summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/ssl/sslserver
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2021-02-16 15:18:07 +0100
committerSona Kurazyan <sona.kurazyan@qt.io>2021-02-22 20:53:31 +0100
commitf050979e3d71cbb72a3b4d75f5e9898d81806487 (patch)
tree4e1498751ed9f3e7b404263cb511ff0cfda0a86a /examples/remoteobjects/ssl/sslserver
parent98b3171bbee84323640be24da230cf1c9b7d5cce (diff)
Clean-up warnings
Fixed the following warnings: - empty expression statement has no effect; remove unnecessary ';' - use of old-style cast - zero as null pointer constant - other minor things Change-Id: Ia672f48d2aa87c59354fc93fd19862f1875e13db Reviewed-by: Brett Stottlemyer <bstottle@ford.com> Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'examples/remoteobjects/ssl/sslserver')
-rw-r--r--examples/remoteobjects/ssl/sslserver/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/remoteobjects/ssl/sslserver/main.cpp b/examples/remoteobjects/ssl/sslserver/main.cpp
index 6c7b8d6..73ec70e 100644
--- a/examples/remoteobjects/ssl/sslserver/main.cpp
+++ b/examples/remoteobjects/ssl/sslserver/main.cpp
@@ -135,7 +135,7 @@ int main(int argc, char *argv[])
MinuteTimer timer;
host.enableRemoting(&timer);
- Q_UNUSED(timer);
+ Q_UNUSED(timer)
return app.exec();
}