Removal of any-switches

This commit is contained in:
Christoffer Lerno
2025-03-03 15:02:25 +01:00
parent 13f824e349
commit 0925010c07
13 changed files with 101 additions and 521 deletions

View File

@@ -479,10 +479,9 @@ fn usz! Formatter.vprintf(&self, String format, any[] anys)
nextcase;
case 'h':
char[] out @noinit;
switch (current)
switch (current.type)
{
case char[]:
out = *current;
case ichar[]:
out = *(char[]*)current;
default: