mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 01:42:58 +01:00
util: Treat Assume as Assert when evaluating at compile-time
This commit is contained in:
parent
d94adc7270
commit
fa69a5f4b7
@ -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…
Reference in New Issue
Block a user