dhjkfhsdf

This commit is contained in:
2026-05-18 23:13:35 +02:00
parent c2e22fb742
commit 2230d4c662
6 changed files with 0 additions and 368 deletions
-16
View File
@@ -1,16 +0,0 @@
#pragma once
#include <print>
namespace ircolib {
template <typename... Args>
void panic(std::format_string<Args...> fmt, Args &&...args) {
std::print("[FATAL] ");
std::println(fmt, std::forward<Args>(args)...);
exit(1);
}
template <typename... Args>
void warn(std::format_string<Args...> fmt, Args &&...args) {
std::print("[WARN] ");
std::println(fmt, std::forward<Args>(args)...);
}
} // namespace ircolib