refactor(test): remove constexpr from throwing function
This commit is contained in:
parent
41575df141
commit
e7c61b2faf
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue