diff options
author | scaraveo <unknown> | 2007-06-04 20:42:04 +0000 |
---|---|---|
committer | scaraveo <unknown> | 2007-06-04 20:42:04 +0000 |
commit | dc154931cf758f8a2347699e4f3facd9edb000a4 (patch) | |
tree | 3b9e6bdf3d0ca98be154d390a7cea855b59d0fd6 /src/PositionCache.cxx | |
parent | ee73a47b1c9005a6002770017f65729323e0482c (diff) | |
download | scintilla-mirror-dc154931cf758f8a2347699e4f3facd9edb000a4.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 < ' '; |