diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-12-17 12:54:26 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-12-17 12:54:38 +0100 |
| commit | 25c28c0c7dd465bd91c338fa88e4ecdf575f37f5 (patch) | |
| tree | 9b016ab5ad48d9ce3513a1aa73cf432c3c434747 /src/server/shared | |
| parent | bf4880973d26519752563d70481fa2e0aec42fc8 (diff) | |
GCC build fix
Diffstat (limited to 'src/server/shared')
| -rw-r--r-- | src/server/shared/DataStores/DB2Store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/DataStores/DB2Store.h b/src/server/shared/DataStores/DB2Store.h index 367c3d0791b..52f907cb279 100644 --- a/src/server/shared/DataStores/DB2Store.h +++ b/src/server/shared/DataStores/DB2Store.h @@ -65,6 +65,8 @@ protected: std::vector<char*> _stringPool; char** _indexTable; uint32 _indexTableSize; + + friend class UnitTestDataLoader; }; template<class T> @@ -82,8 +84,6 @@ public: iterator begin() const { return iterator(reinterpret_cast<T const* const*>(_indexTable), _indexTableSize); } iterator end() const { return iterator(reinterpret_cast<T const* const*>(_indexTable), _indexTableSize, _indexTableSize); } - - friend class UnitTestDataLoader; }; #endif |
