Fixes for compiling with clang

Clang just had better errors and caught stuff msvc did not.
This commit is contained in:
2023-09-07 21:11:57 -04:00
parent d606c790ca
commit 212b4e6d16
2 changed files with 7 additions and 7 deletions

View File

@ -281,22 +281,22 @@ struct String
switch ( c )
{
case ' ':
result.append('·');
result.append( txt("·") );
break;
case '\t':
result.append('');
result.append( txt("") );
break;
case '\n':
result.append('');
result.append( txt("") );
break;
case '\r':
result.append('');
result.append( txt("") );
break;
case '\v':
result.append('');
result.append( txt("") );
break;
case '\f':
result.append('');
result.append( txt("") );
break;
default:
result.append(c);