Test building & generation fixed with altest scripts

This commit is contained in:
2023-08-20 15:45:06 -04:00
parent 2f7836b191
commit 05fa62eced
7 changed files with 17 additions and 17 deletions

View File

@ -72,7 +72,7 @@ struct String
header->Capacity = capacity;
header->Length = 0;
String result = { (char*)allocation + header_size };
String result = { rcast(char*, allocation) + header_size };
return result;
}