Browse Source

dynarmic: Another "Temporary until MCL is fully removed"

Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
pull/2673/head
Caio Oliveira 5 months ago
committed by crueter
parent
commit
02e18f8f1b
  1. 6
      src/dynarmic/src/dynarmic/common/assert.h

6
src/dynarmic/src/dynarmic/common/assert.h

@ -23,6 +23,12 @@ template<typename... Ts>
} \ } \
}()) }())
#endif #endif
#ifndef ASSERT_FALSE
#define ASSERT_FALSE(...) \
([&]() { \
assert_terminate("false", __VA_ARGS__); \
}())
#endif
#ifndef ASSERT #ifndef ASSERT
#define ASSERT(_a_) ASSERT_MSG(_a_, "") #define ASSERT(_a_) ASSERT_MSG(_a_, "")

Loading…
Cancel
Save