mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Revert "Core/DataStores: Implemented [] operator on DB2Storage (#20494)"
This reverts commit c8974a91a6.
This commit is contained in:
@@ -95,7 +95,6 @@ public:
|
||||
|
||||
T const* LookupEntry(uint32 id) const { return (id >= _indexTableSize) ? nullptr : _indexTable.AsT[id]; }
|
||||
T const* AssertEntry(uint32 id) const { return ASSERT_NOTNULL(LookupEntry(id)); }
|
||||
T const* operator[](uint32 id) const { return LookupEntry(id); }
|
||||
|
||||
uint32 GetNumRows() const { return _indexTableSize; }
|
||||
void Load(std::string const& path, LocaleConstant locale) override
|
||||
|
||||
Reference in New Issue
Block a user