summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbconnection.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2015-02-14 21:35:43 -0800
committerShawn Rutledge <shawn.rutledge@digia.com>2015-02-20 12:53:05 +0000
commit0bcd06719377416b700ee0ace5554b1a35e9be3b (patch)
tree977d431f2caa757575032bd6e3916b10196ab87e /src/plugins/platforms/xcb/qxcbconnection.h
parent9bf8b2a412b77fa01e88c3f9ad9a9e7792cd4ac5 (diff)
Fix warning-as-error about member not used with Clang 3.6
Found by Clang 3.6 on Linux: qxcbeglcontext.h:91:21: error: private field 'm_connection' is not used [-Werror,-Wunused-private-field] Change-Id: I1a800c709d3543699131ffff13c2fcf8cf013175 Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'src/plugins/platforms/xcb/qxcbconnection.h')
-rw-r--r--src/plugins/platforms/xcb/qxcbconnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/xcb/qxcbconnection.h b/src/plugins/platforms/xcb/qxcbconnection.h
index 2a4cfea62d..e3d9766a4b 100644
--- a/src/plugins/platforms/xcb/qxcbconnection.h
+++ b/src/plugins/platforms/xcb/qxcbconnection.h
@@ -661,7 +661,7 @@ cookie_t q_xcb_call_template(const cookie_t &cookie, QXcbConnection *connection,
#else
#define Q_XCB_CALL(x) x
#define Q_XCB_CALL2(x, connection) x
-#define Q_XCB_NOOP(c)
+#define Q_XCB_NOOP(c) (void)c;
#endif
QT_END_NAMESPACE