Android: Add 'inline' to static function in header

Clang complains with a warning otherwise

Change-Id: Ia833529e4c37bb8c68d5445a04a7602481571a95
Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
Eike Ziller
2018-04-17 16:59:42 +02:00
parent bb0358cc68
commit 3309ed8783

View File

@@ -42,7 +42,7 @@ namespace Internal {
const int MIN_SOCKET_HANDSHAKE_PORT = 20001;
static void deleter(QProcess *p)
static inline void deleter(QProcess *p)
{
p->terminate();
if (!p->waitForFinished(1000)) {