From 1746ffb8f8378671f828fb70a5b30f44db83c79c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 24 Apr 2009 02:28:05 +0000 Subject: Added using namespace for OS X build. --- src/LexNimrod.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/LexNimrod.cxx') diff --git a/src/LexNimrod.cxx b/src/LexNimrod.cxx index 90c24897b..8c4d04360 100644 --- a/src/LexNimrod.cxx +++ b/src/LexNimrod.cxx @@ -22,6 +22,10 @@ #include "Scintilla.h" #include "SciLexer.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif + static inline bool IsAWordChar(int ch) { return (ch >= 0x80) || isalnum(ch) || ch == '_'; } -- cgit v1.2.3