[Core] Remove obsolete directive

This commit is contained in:
Antz 2015-01-21 15:38:09 +00:00 committed by Antz
parent deb9a167ea
commit 2d06f70da2
57 changed files with 139 additions and 139 deletions

View file

@ -68,7 +68,7 @@ enum SqlStmtFieldType
// templates might be the best choice here
// but I didn't have time to play with them
class MANGOS_DLL_SPEC SqlStmtFieldData
class SqlStmtFieldData
{
public:
SqlStmtFieldData() : m_type(FIELD_NONE) { m_binaryData.ui64 = 0; }
@ -145,7 +145,7 @@ template<> inline void SqlStmtFieldData::set(const char* val) { m_type = FIELD_S
class SqlStatement;
// prepared statement executor
class MANGOS_DLL_SPEC SqlStmtParameters
class SqlStmtParameters
{
public:
typedef std::vector<SqlStmtFieldData> ParameterContainer;
@ -194,7 +194,7 @@ class SqlStatementID
};
// statement index
class MANGOS_DLL_SPEC SqlStatement
class SqlStatement
{
public:
~SqlStatement() { delete m_pParams; }
@ -301,7 +301,7 @@ class MANGOS_DLL_SPEC SqlStatement
};
// base prepared statement class
class MANGOS_DLL_SPEC SqlPreparedStatement
class SqlPreparedStatement
{
public:
virtual ~SqlPreparedStatement() {}
@ -336,7 +336,7 @@ class MANGOS_DLL_SPEC SqlPreparedStatement
};
// prepared statements via plain SQL string requests
class MANGOS_DLL_SPEC SqlPlainPreparedStatement : public SqlPreparedStatement
class SqlPlainPreparedStatement : public SqlPreparedStatement
{
public:
SqlPlainPreparedStatement(const std::string& fmt, SqlConnection& conn);