aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/MySQLConnection.h
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2014-04-29 19:39:40 +0200
committerjackpoz <giacomopoz@gmail.com>2014-04-29 19:39:40 +0200
commitf9a6aa5479dc843f7bb8b58d027b5d6d483d3fd5 (patch)
treef45262b22a888300024b62c2fa4154eceed2e2bd /src/server/shared/Database/MySQLConnection.h
parent1896b5cb5996e0f6e31c3693035257ac6d410392 (diff)
parent24ae6a6802da5fc3f90b075d21cd4275e7138441 (diff)
Merge pull request #11950 from Dehravor/override-final-delete
Core/Misc: Remove obsolete C++11 backward compatibility macros
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.h')
-rw-r--r--src/server/shared/Database/MySQLConnection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Database/MySQLConnection.h b/src/server/shared/Database/MySQLConnection.h
index e55e3dfc23a..512df7c16c7 100644
--- a/src/server/shared/Database/MySQLConnection.h
+++ b/src/server/shared/Database/MySQLConnection.h
@@ -132,8 +132,8 @@ class MySQLConnection
ConnectionFlags m_connectionFlags; //! Connection flags (for preparing relevant statements)
ACE_Thread_Mutex m_Mutex;
- MySQLConnection(MySQLConnection const& right) DELETE_MEMBER;
- MySQLConnection& operator=(MySQLConnection const& right) DELETE_MEMBER;
+ MySQLConnection(MySQLConnection const& right) = delete;
+ MySQLConnection& operator=(MySQLConnection const& right) = delete;
};
#endif