mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-04 19:43:48 +00:00
fix(build): eluna (#3103)
This commit is contained in:
@@ -186,7 +186,7 @@ bool PreparedResultSet::_NextRow()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ELUNA
|
#ifdef ELUNA
|
||||||
char* ResultSet::GetFieldName(uint32 index) const
|
std::string ResultSet::GetFieldName(uint32 index) const
|
||||||
{
|
{
|
||||||
ASSERT(index < _fieldCount);
|
ASSERT(index < _fieldCount);
|
||||||
return _fields[index].name;
|
return _fields[index].name;
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class ResultSet
|
|||||||
uint64 GetRowCount() const { return _rowCount; }
|
uint64 GetRowCount() const { return _rowCount; }
|
||||||
uint32 GetFieldCount() const { return _fieldCount; }
|
uint32 GetFieldCount() const { return _fieldCount; }
|
||||||
#ifdef ELUNA
|
#ifdef ELUNA
|
||||||
char* GetFieldName(uint32 index) const;
|
std::string GetFieldName(uint32 index) const;
|
||||||
#endif
|
#endif
|
||||||
Field* Fetch() const { return _currentRow; }
|
Field* Fetch() const { return _currentRow; }
|
||||||
const Field & operator [] (uint32 index) const
|
const Field & operator [] (uint32 index) const
|
||||||
|
|||||||
Reference in New Issue
Block a user