Remove <[]> experimental generic syntax.

This commit is contained in:
Christoffer Lerno
2025-02-13 12:53:46 +01:00
parent c785572467
commit 8c58b31bbd
22 changed files with 72 additions and 100 deletions

View File

@@ -13,7 +13,7 @@ struct Allocation
void*[MAX_BACKTRACE] backtrace;
}
def AllocMap = HashMap<[uptr, Allocation]>;
def AllocMap = HashMap(<uptr, Allocation>);
// A simple tracking allocator.
// It tracks allocations using a hash map but