compiler attributes were hidden behind ATTRIBUTE_* macros

This commit is contained in:
2025-11-08 20:54:41 +05:00
parent 30c141f587
commit dbe8924466
4 changed files with 18 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ str Error_toStr(Error* e){
u32 len = List_len(&e->call_stack, ErrorCallPos);
StringBuilder b = StringBuilder_alloc(e->msg.size + 80 * len);
StringBuilder_append_str(&b, STR("Error: "));
StringBuilder_append_str(&b, STR("Catched Error: "));
StringBuilder_append_str(&b, e->msg);
for(u32 i = 0; i < len; i++){
ErrorCallPos* ep = (ErrorCallPos*)e->call_stack.data + i;