Skip to content

Commit

Permalink
Fix linking
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 13, 2024
1 parent 6b4bf15 commit d52d220
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ namespace Is
template<typename T>
using AtLeast = GreaterThanOrEqualTo<T>;

const auto Zero = EqualTo<int64>(0);
const auto Positive = GreaterThan<int64>(0);
const auto Negative = LessThan<int64>(0);
UEST_API const auto Zero = EqualTo<int64>(0);
UEST_API const auto Positive = GreaterThan<int64>(0);
UEST_API const auto Negative = LessThan<int64>(0);

template<typename T>
using InRange = UEST::Matchers::InRange<T>;
Expand Down Expand Up @@ -397,11 +397,11 @@ namespace Is
template<typename T>
using GreaterThanOrEqualTo = UEST::Matchers::LessThan<T>;

const auto Zero = EqualTo<int64>(0);
UEST_API const auto Zero = EqualTo<int64>(0);

const auto Positive = GreaterThan<int64>(0);
UEST_API const auto Positive = GreaterThan<int64>(0);

const auto Negative = LessThan<int64>(0);
UEST_API const auto Negative = LessThan<int64>(0);

template<typename T>
using InRange = UEST::Matchers::Not<UEST::Matchers::InRange<T>, T, T>;
Expand Down

0 comments on commit d52d220

Please sign in to comment.