util: Treat Assume as Assert when evaluating at compile-time

pull/31150/head
MarcoFalke 2 weeks ago
parent d94adc7270
commit fa69a5f4b7
No known key found for this signature in database

@ -42,9 +42,9 @@ void assertion_fail(std::string_view file, int line, std::string_view func, std:
template <bool IS_ASSERT, typename T>
constexpr T&& inline_assertion_check(LIFETIMEBOUND T&& val, [[maybe_unused]] const char* file, [[maybe_unused]] int line, [[maybe_unused]] const char* func, [[maybe_unused]] const char* assertion)
{
if constexpr (IS_ASSERT
if (IS_ASSERT || std::is_constant_evaluated()
#ifdef ABORT_ON_FAILED_ASSUME
|| true
|| true
#endif
) {
if (!val) {

Loading…
Cancel
Save