From cb9fa588ba8144fcdd52ba4b83d69d93fb18066f Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Sun, 30 Mar 2025 23:08:43 -0500 Subject: Add hash map. --- include/fud_assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/fud_assert.hpp') 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(0) : assertFail(#expr, std::source_location::current())) +#define fudAssert(expr) ((expr) ? static_cast(0) : fud::assertFail(#expr, std::source_location::current())) namespace impl { void assertFailMessage(const char* assertion, std::source_location sourceLocation); -- cgit v1.2.3