diff options
-rw-r--r-- | include/PropSet.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index 259634981..59588c62e 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -76,10 +76,6 @@ public: bool ignoreCase=false, char otherSeparator='\0'); }; -inline bool nonFuncChar(char ch) { - return strchr("\t\n\r !\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", ch) != NULL; -} - inline bool IsAlphabetic(unsigned int ch) { return ((ch >= 'A') && (ch <= 'Z')) || ((ch >= 'a') && (ch <= 'z')); } |