diff options
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 753d325ef..cfcda92be 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -23,6 +23,10 @@ #include "Document.h" #include "RESearch.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif + // This is ASCII specific but is safe with chars >= 0x80 static inline bool isspacechar(unsigned char ch) { return (ch == ' ') || ((ch >= 0x09) && (ch <= 0x0d)); |