Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 3, 2024
1 parent dfe99d4 commit 186593b
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,25 +129,6 @@ namespace Matchers
return FString::Printf(TEXT("not %s"), *Nested.Describe());
}
};

template<typename M>
// TODO: Add requires
struct Not
{
M Nested;

Not() = default;

Not(M&& Matcher)
: Nested(MoveTemp(Matcher))
{}

template<typename T>
auto operator()() const
{
return NotMatcher<T, M>(Nested);
}
};
}

namespace Is
Expand Down

0 comments on commit 186593b

Please sign in to comment.