refactor(test): remove constexpr from throwing function
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is failing

This commit is contained in:
light7734 2025-10-06 12:24:31 +03:30
parent 41575df141
commit e7c61b2faf
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -19,7 +19,7 @@ concept Printable = Formattable<T> || requires(std::ostream &stream, T value) {
template<typename T> template<typename T>
concept Testable = Printable<T> && std::equality_comparable<T>; concept Testable = Printable<T> && std::equality_comparable<T>;
constexpr void expect_unreachable( inline void expect_unreachable(
std::source_location source_location = std::source_location::current() std::source_location source_location = std::source_location::current()
) )
{ {