diff options
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index dece77040..3c4ca88c3 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -10,14 +10,6 @@ namespace Scintilla::Internal { -inline constexpr bool IsEOLChar(int ch) noexcept { - return (ch == '\r') || (ch == '\n'); -} - -inline constexpr bool IsSpaceOrTab(int ch) noexcept { - return ch == ' ' || ch == '\t'; -} - /** * A point in document space. * Uses double for sufficient resolution in large (>20,000,000 line) documents. |