From 7b30a5425eaf7aae1d72d5ba564092e342901fe8 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Fri, 25 Oct 2024 17:13:49 -0500 Subject: A lot of work on formatting. --- include/fud_assert.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/fud_assert.hpp') 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(0) : assertFail(#expr, std::source_location::current())) +namespace impl { +void assertFailMessage(const char* assertion, std::source_location sourceLocation); +} + } // namespace fud #endif -- cgit v1.2.3