diff options
Diffstat (limited to 'include/fud_assert.hpp')
-rw-r--r-- | include/fud_assert.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fud_assert.hpp b/include/fud_assert.hpp index 1b5fe9f..cceb58b 100644 --- a/include/fud_assert.hpp +++ b/include/fud_assert.hpp @@ -29,7 +29,7 @@ namespace fud { const char* assertion, std::source_location sourceLocation = std::source_location::current()); -#define fudAssert(expr) ((expr) ? static_cast<void>(0) : assertFail(#expr, std::source_location::current())) +#define fudAssert(expr) ((expr) ? static_cast<void>(0) : fud::assertFail(#expr, std::source_location::current())) namespace impl { void assertFailMessage(const char* assertion, std::source_location sourceLocation); |