From a141c401f78467bc15f62882fca5d55a007cacbb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 00:21:48 +0100 Subject: Reorganize everything --- asl/assert.cpp | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 asl/assert.cpp (limited to 'asl/assert.cpp') diff --git a/asl/assert.cpp b/asl/assert.cpp deleted file mode 100644 index 353232e..0000000 --- a/asl/assert.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include "asl/assert.hpp" -#include "asl/print.hpp" - - -void asl::report_assert_failure(const char* msg, const source_location& sl) -{ - eprint("------------------------------------------------------------\n"); - eprint("Assertion failure at {}, line {}:\n", sl.file, sl.line); - eprint("{}\n", msg); - eprint("------------------------------------------------------------\n"); -} -- cgit