Remove: A few bits of dead code

This commit is contained in:
Charles Pigott
2018-10-14 19:31:14 +01:00
committed by frosch
parent e0c0394e37
commit 52ed3bcbaa
6 changed files with 4 additions and 22 deletions

View File

@@ -351,9 +351,8 @@ bool IsValidChar(WChar key, CharSetFilter afilter)
case CS_NUMERAL_SPACE: return (key >= '0' && key <= '9') || key == ' ';
case CS_ALPHA: return IsPrintable(key) && !(key >= '0' && key <= '9');
case CS_HEXADECIMAL: return (key >= '0' && key <= '9') || (key >= 'a' && key <= 'f') || (key >= 'A' && key <= 'F');
default: NOT_REACHED();
}
return false;
}
#ifdef WIN32