mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-02 07:07:29 +01:00
Core/Misc: Remove obsolete C++11 backward compatibility macros
OVERRIDE, FINAL, DELETE_MEMBER
This commit is contained in:
@@ -110,8 +110,8 @@ class QueryCallback
|
||||
ParamType _param;
|
||||
uint8 _stage;
|
||||
|
||||
QueryCallback(QueryCallback const& right) DELETE_MEMBER;
|
||||
QueryCallback& operator=(QueryCallback const& right) DELETE_MEMBER;
|
||||
QueryCallback(QueryCallback const& right) = delete;
|
||||
QueryCallback& operator=(QueryCallback const& right) = delete;
|
||||
};
|
||||
|
||||
template <typename Result, typename ParamType1, typename ParamType2, bool chain = false>
|
||||
@@ -205,8 +205,8 @@ class QueryCallback_2
|
||||
ParamType2 _param_2;
|
||||
uint8 _stage;
|
||||
|
||||
QueryCallback_2(QueryCallback_2 const& right) DELETE_MEMBER;
|
||||
QueryCallback_2& operator=(QueryCallback_2 const& right) DELETE_MEMBER;
|
||||
QueryCallback_2(QueryCallback_2 const& right) = delete;
|
||||
QueryCallback_2& operator=(QueryCallback_2 const& right) = delete;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user