From 0f5632c70eb11a10225279a7d2d8b511d0095d16 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 20 Apr 2014 16:48:35 +0200 Subject: Core/Misc: Fixed some -Weffc++ warnings --- src/server/shared/Database/SQLOperation.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/server/shared/Database/SQLOperation.h') diff --git a/src/server/shared/Database/SQLOperation.h b/src/server/shared/Database/SQLOperation.h index 2c404c131ae..eb32b60c74d 100644 --- a/src/server/shared/Database/SQLOperation.h +++ b/src/server/shared/Database/SQLOperation.h @@ -69,6 +69,10 @@ class SQLOperation : public ACE_Method_Request virtual void SetConnection(MySQLConnection* con) { m_conn = con; } MySQLConnection* m_conn; + + private: + SQLOperation(SQLOperation const& right) DELETE_MEMBER; + SQLOperation& operator=(SQLOperation const& right) DELETE_MEMBER; }; #endif -- cgit v1.2.3