fixed compiler warnings detected by jenkins build server

This commit is contained in:
Mathew Sutcliffe
2014-04-07 15:47:12 +01:00
parent 2f8efe5c3b
commit 903ddf7841
3 changed files with 4 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ public:
//! Copying is only allowed when there are no connections stored.
//! @{
ConnectGuard(const ConnectGuard& other) { Q_ASSERT(other.m_conns.isEmpty()); Q_UNUSED(other); }
ConnectGuard& operator= (const ConnectGuard& other) { Q_ASSERT(other.m_conns.isEmpty()); Q_UNUSED(other); }
ConnectGuard& operator= (const ConnectGuard& other) { Q_ASSERT(other.m_conns.isEmpty()); Q_UNUSED(other); return *this; }
//! @}
private: