Remove tscoped. Replace str_index_of with "starts_with". Updated copy_zstring/copy. Fixed utf conversion functions. Initial work on "Path". Lexer fix on \\. ABI fix using distinct types. (bool)"" now works correctly. Bug in $if with switches/loops as the first statement fixed. Version bump.

This commit is contained in:
Christoffer Lerno
2022-10-20 10:46:07 +02:00
committed by Christoffer Lerno
parent 7d58ce0dcb
commit f86ef8a743
15 changed files with 1210 additions and 1493 deletions

View File

@@ -28,7 +28,7 @@ macro Class! class_by_name(char* c)
return cls;
}
macro Class[] class_get_list(Allocator *allocator = mem::temp_allocator())
macro Class[] class_get_list(Allocator *allocator = mem::current_allocator())
{
int num_classes = _macos_objc_getClassList(null, 0);
if (!num_classes) return {};