summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2014-06-05 17:04:13 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-06-05 17:22:02 +0200
commit8399d12e539d88d6defbf549333becaabcac02e3 (patch)
treef0fd6e7ec9cad8bec25e12293a063fead2c6a917 /src
parent256ff07d79c0cd19dc744b17f726165d13f905b3 (diff)
Silence warning, we know what we are doing (-Wunused-value).
Change-Id: I3a944e0ff38b10b3440fa3c3dfcce378f284aacc Reviewed-by: Niels Weber <niels.weber@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/libs/installer/remoteobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/remoteobject.h b/src/libs/installer/remoteobject.h
index 4a0a21731..53916b9c3 100644
--- a/src/libs/installer/remoteobject.h
+++ b/src/libs/installer/remoteobject.h
@@ -132,7 +132,7 @@ private:
{
// Force compiler error while passing anything different then Dummy* to the function.
// It really doesn't make sense to send any pointer over to the server, so bail early.
- static_cast<Dummy*> (dummy);
+ Q_UNUSED(static_cast<Dummy*> (dummy))
return false;
}