fix linker error due to export macro

This commit is contained in:
Bryn Lloyd 2025-05-23 10:16:38 +02:00
parent e266059109
commit 9fc16f29c7

View File

@ -226,7 +226,7 @@ private:
bool operator[] (IndexType i) const { return Test(i); }
T_Range<IndexType> Range() const { return { IndexBASE<IndexType>(), IndexBASE<IndexType>()+Size() }; }
NGCORE_API TBitArray & Or (const TBitArray & ba2)
inline TBitArray & Or (const TBitArray & ba2)
{
BitArray::Or(ba2);
return *this;