Drop comment

This commit is contained in:
robojumper
2024-05-05 09:30:54 +02:00
parent 282402ff85
commit bb65dd5518
-1
View File
@@ -5,7 +5,6 @@ namespace ut {
namespace {
bool IsSJISLeadByte(u8 c) {
// Idk how to force the comparison correctly
return ((c >= 0x81) && (c < 0xA0)) || c >= 0xe0;
}