mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
feat(Core/Modules): add separated lib for modules (#9281)
This commit is contained in:
@@ -184,7 +184,6 @@ public:
|
||||
[[nodiscard]] T const* LookupEntry(uint32 id) const { return (id >= _indexTableSize) ? nullptr : _indexTable.AsT[id]; }
|
||||
[[nodiscard]] T const* AssertEntry(uint32 id) const { return ASSERT_NOTNULL(LookupEntry(id)); }
|
||||
|
||||
#ifdef ELUNA
|
||||
void SetEntry(uint32 id, T* t)
|
||||
{
|
||||
if (id >= _indexTableSize)
|
||||
@@ -203,7 +202,6 @@ public:
|
||||
delete _indexTable.AsT[id];
|
||||
_indexTable.AsT[id] = t;
|
||||
}
|
||||
#endif
|
||||
|
||||
[[nodiscard]] uint32 GetNumRows() const { return _indexTableSize; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user