Core: Small cleanup

This commit is contained in:
Krzosa Karol
2023-04-21 15:19:38 +02:00
parent 19fa0509c6
commit 07dcb418dd
5 changed files with 13 additions and 26 deletions

View File

@@ -344,5 +344,5 @@ operator!=(Intern_String a, Intern_String b) {
return !result;
}
#define For_Linked_List_Named(a, it) for (auto *it = (a); it; it = it->next) // @todo: reference?
#define For_Linked_List_Named(a, it) for (auto *it = (a); it; it = it->next)
#define For_Linked_List(a) For_Linked_List_Named(a, it)