Porytiles
Loading...
Searching...
No Matches
panic.cpp
Go to the documentation of this file.
2
3#include <cstdio>
4#include <cstdlib>
5
6namespace porytiles {
7
8[[noreturn]] void PanicImpl(const char *s) noexcept {
9 std::fputs(s, stderr);
10 std::abort();
11}
12
13} // namespace porytiles
void PanicImpl(const char *s) noexcept
Definition panic.cpp:8