diff --git a/libsrc/core/bitarray.hpp b/libsrc/core/bitarray.hpp index caa8345c..73029a9d 100644 --- a/libsrc/core/bitarray.hpp +++ b/libsrc/core/bitarray.hpp @@ -226,7 +226,7 @@ private: bool operator[] (IndexType i) const { return Test(i); } T_Range Range() const { return { IndexBASE(), IndexBASE()+Size() }; } - NGCORE_API TBitArray & Or (const TBitArray & ba2) + inline TBitArray & Or (const TBitArray & ba2) { BitArray::Or(ba2); return *this;