From 24ae6a6802da5fc3f90b075d21cd4275e7138441 Mon Sep 17 00:00:00 2001 From: Dehravor Date: Tue, 29 Apr 2014 16:35:11 +0200 Subject: Core/Misc: Remove obsolete C++11 backward compatibility macros OVERRIDE, FINAL, DELETE_MEMBER --- src/server/shared/Database/MySQLConnection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/shared/Database/MySQLConnection.h') 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 -- cgit v1.2.3