diff options
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 402d657b8..f23823bdf 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -8,9 +8,7 @@ #ifndef POSITIONCACHE_H #define POSITIONCACHE_H -#ifdef SCI_NAMESPACE namespace Scintilla { -#endif static inline bool IsEOLChar(char ch) { return (ch == '\r') || (ch == '\n'); @@ -233,8 +231,6 @@ inline bool IsSpaceOrTab(int ch) { return ch == ' ' || ch == '\t'; } -#ifdef SCI_NAMESPACE } -#endif #endif |