Compare commits

...

2 commits

Author SHA1 Message Date
3ed52f2ae8
dynarmic: Another "Temporary until MCL is fully removed"
Some checks failed
eden-license / license-header (pull_request) Failing after 21s
Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
2025-10-05 11:43:59 -03:00
36e9666292
dynarmic: include missing header
Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
2025-10-05 11:43:26 -03:00
2 changed files with 7 additions and 0 deletions

View file

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

View file

@ -6,6 +6,7 @@
#pragma once
#include <cstddef>
#include <cstdlib>
#include <vector>
namespace Dynarmic::Common {