summaryrefslogtreecommitdiff
path: root/include/fud_assert.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-25 17:13:49 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-25 17:13:49 -0500
commit7b30a5425eaf7aae1d72d5ba564092e342901fe8 (patch)
tree8a74d0810ea4db23d4d0c6c4ba8d91518d569db2 /include/fud_assert.hpp
parent11968f674a7de34fb7de744598a8086330cd88a3 (diff)
A lot of work on formatting.
Diffstat (limited to 'include/fud_assert.hpp')
-rw-r--r--include/fud_assert.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fud_assert.hpp b/include/fud_assert.hpp
index 6b21fdc..1b5fe9f 100644
--- a/include/fud_assert.hpp
+++ b/include/fud_assert.hpp
@@ -31,6 +31,10 @@ namespace fud {
#define fudAssert(expr) ((expr) ? static_cast<void>(0) : assertFail(#expr, std::source_location::current()))
+namespace impl {
+void assertFailMessage(const char* assertion, std::source_location sourceLocation);
+}
+
} // namespace fud
#endif