From 9fc16f29c756b48d09f5535efa9a411509de6df9 Mon Sep 17 00:00:00 2001 From: Bryn Lloyd <12702862+dyollb@users.noreply.github.com> Date: Fri, 23 May 2025 10:16:38 +0200 Subject: [PATCH] fix linker error due to export macro --- libsrc/core/bitarray.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;