summaryrefslogtreecommitdiff
path: root/include/fud_assert.hpp
diff options
context:
space:
mode:
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