aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/PreparedStatement.h
diff options
context:
space:
mode:
authorDehravor <dehravor@gmail.com>2014-04-29 16:35:11 +0200
committerDehravor <dehravor@gmail.com>2014-04-29 16:35:11 +0200
commit24ae6a6802da5fc3f90b075d21cd4275e7138441 (patch)
tree3501d986aaf1ec9df27a873a16bf5b3e5dac2225 /src/server/shared/Database/PreparedStatement.h
parent414554aefa8af569a96c952dcf36707c9c77c7cb (diff)
Core/Misc: Remove obsolete C++11 backward compatibility macros
OVERRIDE, FINAL, DELETE_MEMBER
Diffstat (limited to 'src/server/shared/Database/PreparedStatement.h')
-rw-r--r--src/server/shared/Database/PreparedStatement.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/shared/Database/PreparedStatement.h b/src/server/shared/Database/PreparedStatement.h
index 9ccd16e3d5c..6afb309db2c 100644
--- a/src/server/shared/Database/PreparedStatement.h
+++ b/src/server/shared/Database/PreparedStatement.h
@@ -102,8 +102,8 @@ class PreparedStatement
uint32 m_index;
std::vector<PreparedStatementData> statement_data; //- Buffer of parameters, not tied to MySQL in any way yet
- PreparedStatement(PreparedStatement const& right) DELETE_MEMBER;
- PreparedStatement& operator=(PreparedStatement const& right) DELETE_MEMBER;
+ PreparedStatement(PreparedStatement const& right) = delete;
+ PreparedStatement& operator=(PreparedStatement const& right) = delete;
};
//- Class of which the instances are unique per MySQLConnection
@@ -149,8 +149,8 @@ class MySQLPreparedStatement
std::vector<bool> m_paramsSet;
MYSQL_BIND* m_bind;
- MySQLPreparedStatement(MySQLPreparedStatement const& right) DELETE_MEMBER;
- MySQLPreparedStatement& operator=(MySQLPreparedStatement const& right) DELETE_MEMBER;
+ MySQLPreparedStatement(MySQLPreparedStatement const& right) = delete;
+ MySQLPreparedStatement& operator=(MySQLPreparedStatement const& right) = delete;
};
typedef ACE_Future<PreparedQueryResult> PreparedQueryResultFuture;