THRIFT-3561: C++/Qt: make use of Q_DISABLE_COPY() to get rid of copy ctor and assignment operator
Client: C++
Patch: Sebastian Zenker
This closes #799
diff --git a/lib/cpp/src/thrift/qt/TQTcpServer.h b/lib/cpp/src/thrift/qt/TQTcpServer.h
index 3403f1e..8bbb3df 100644
--- a/lib/cpp/src/thrift/qt/TQTcpServer.h
+++ b/lib/cpp/src/thrift/qt/TQTcpServer.h
@@ -59,8 +59,7 @@
void socketClosed();
private:
- TQTcpServer(const TQTcpServer&);
- TQTcpServer& operator=(const TQTcpServer&);
+ Q_DISABLE_COPY(TQTcpServer)
struct ConnectionContext;