-Removed lambda expansions due to gcc generating call instructions

This commit is contained in:
2025-06-28 12:09:59 -04:00
parent 37fba8faad
commit 1573033b52
10 changed files with 298 additions and 67 deletions

View File

@@ -26,5 +26,7 @@ void __assert_impl(const char* expression, const char* file, int line, const cha
{
__assert_callback(expression, file, line, function);
#ifndef NDEBUG
abort();
#endif
}