summaryrefslogtreecommitdiff
path: root/bowshock/source/base/terminate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bowshock/source/base/terminate.cxx')
-rw-r--r--bowshock/source/base/terminate.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/bowshock/source/base/terminate.cxx b/bowshock/source/base/terminate.cxx
deleted file mode 100644
index 94e1ed6..0000000
--- a/bowshock/source/base/terminate.cxx
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2022-2023 Gabriel Bjørnager Jensen.
-
-#include <bow/base.hxx>
-
-#include <cstdlib>
-#include <cstdio>
-#include <fmt/core.h>
-#include <string>
-
-auto bow::terminate(::std::string const& location, ::std::string const& message) noexcept -> void {
- ::fmt::print(stderr, "[{}] terminate due to: {}\n", location, message);
-
- ::std::abort();
-}