diff options
author | scaraveo <devnull@localhost> | 2007-06-04 20:42:04 +0000 |
---|---|---|
committer | scaraveo <devnull@localhost> | 2007-06-04 20:42:04 +0000 |
commit | 0c80257e76f3c9e4b78ea5c73518f171938db14f (patch) | |
tree | 3b9e6bdf3d0ca98be154d390a7cea855b59d0fd6 /src/PositionCache.cxx | |
parent | e1968db795a82959db3da66e548a9ba482a3e36d (diff) | |
download | scintilla-mirror-0c80257e76f3c9e4b78ea5c73518f171938db14f.tar.gz |
fix osx build for new positioncache code
Diffstat (limited to 'src/PositionCache.cxx')
-rw-r--r-- | src/PositionCache.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 01b8f68f1..13140b779 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -31,6 +31,10 @@ #include "Document.h" #include "PositionCache.h" +#ifdef SCI_NAMESPACE +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 < ' '; |