Fixed
All checks were successful
dropshell-build / build (push) Successful in 18s

This commit is contained in:
j842 2025-06-04 09:47:20 +12:00
parent 48d139997b
commit e2c7e0f632

View File

@ -162,7 +162,7 @@ void assert_failed(
) {
if (!condition) {
std::cerr << "Assertion failed at " << location.file_name() << ":" << location.line() << ": "
<< location.function_name() << "(): " << message << "\n";
<< location.function_name() << ": " << message << "\n";
print_stacktrace();
std::abort();
}