diff options
-rw-r--r-- | src/PositionCache.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 90a3f02f0..664003c7e 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -43,11 +43,6 @@ using namespace Scintilla; #endif -static inline bool IsControlCharacter(int ch) { - // iscntrl returns true for lots of chars > 127 which are displayable - return ch >= 0 && ch < ' '; -} - LineLayout::LineLayout(int maxLineLength_) : lineStarts(0), lenLineStarts(0), |