summaryrefslogtreecommitdiff
path: root/include/fud_assert.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-03-30 23:08:43 -0500
committerDominick Allen <djallen@librehumanitas.org>2025-03-30 23:08:43 -0500
commitcb9fa588ba8144fcdd52ba4b83d69d93fb18066f (patch)
tree214574ca68c1551ec76e7fbb9e0263793180231d /include/fud_assert.hpp
parent1d357adfa19725ee69fb267a363f1fd217b1272f (diff)
Add hash map.
Diffstat (limited to 'include/fud_assert.hpp')
-rw-r--r--include/fud_assert.hpp2
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);