Skip to content

Commit f93bb2c

Browse files
committed
fix: revert using constexpr instead of consteval in WildcardMatcher
1 parent 5a50243 commit f93bb2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/mimic++/matchers/GeneralMatchers.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,13 @@ namespace mimicpp
190190
{
191191
public:
192192
[[nodiscard]]
193-
static consteval bool matches([[maybe_unused]] auto&& target) noexcept
193+
static constexpr bool matches([[maybe_unused]] auto&& target) noexcept
194194
{
195195
return true;
196196
}
197197

198198
[[nodiscard]]
199-
static consteval std::nullopt_t describe() noexcept
199+
static constexpr std::nullopt_t describe() noexcept
200200
{
201201
return std::nullopt;
202202
}

0 commit comments

Comments
 (0)