Cleanup: remove commented out code

This commit is contained in:
Rubidium
2023-01-26 22:50:43 +01:00
committed by rubidium42
parent 5863d78cb4
commit 71b46db8d0
9 changed files with 2 additions and 26 deletions

View File

@@ -618,7 +618,6 @@ size_t Utf8Decode(WChar *c, const char *s)
}
}
/* Debug(misc, 1, "[utf8] invalid UTF-8 sequence"); */
*c = '?';
return 1;
}
@@ -654,7 +653,6 @@ inline size_t Utf8Encode(T buf, WChar c)
return 4;
}
/* Debug(misc, 1, "[utf8] can't UTF-8 encode value 0x{:X}", c); */
*buf = '?';
return 1;
}