Skip to content

Commit

Permalink
Add missing DLL exports.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Aug 19, 2024
1 parent f95c1d9 commit f707d7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* A view that provides random access to integer values, each with a specific number of bits, stored in a pre-allocated
* array of a specific size.
*/
class BitView : public BaseView<uint32> {
class MLRLCOMMON_API BitView : public BaseView<uint32> {
public:

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @param T The type of the integer values, the view provides access to
*/
template<typename T>
class BitVector : public BitView {
class MLRLCOMMON_API BitVector : public BitView {
private:

static inline constexpr uint32 NUM_BITS = util::bits<uint32>();
Expand Down Expand Up @@ -119,7 +119,7 @@ class BitVector : public BitView {
* @tparam BitVector The type of the bit vector
*/
template<typename BitVector>
class BitVectorAllocator : public BitVector {
class MLRLCOMMON_API BitVectorAllocator : public BitVector {
public:

/**
Expand Down

0 comments on commit f707d7d

Please sign in to comment.