aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexTAL.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-04-24 02:28:05 +0000
committernyamatongwe <unknown>2009-04-24 02:28:05 +0000
commit1746ffb8f8378671f828fb70a5b30f44db83c79c (patch)
tree361ed514e708128f64ee816dc840797e497493aa /src/LexTAL.cxx
parent865a213a8879baab1c67069ab1d2eae63deeea4b (diff)
downloadscintilla-mirror-1746ffb8f8378671f828fb70a5b30f44db83c79c.tar.gz
Added using namespace for OS X build.
Diffstat (limited to 'src/LexTAL.cxx')
-rw-r--r--src/LexTAL.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexTAL.cxx b/src/LexTAL.cxx
index a856dc5f6..a76a296d6 100644
--- a/src/LexTAL.cxx
+++ b/src/LexTAL.cxx
@@ -23,6 +23,10 @@
#include "SciLexer.h"
#include "StyleContext.h"
+#ifdef SCI_NAMESPACE
+using namespace Scintilla;
+#endif
+
inline bool isTALoperator(char ch)
{
return ch == '\'' || ch == '@' || ch == '#' || isoperator(ch);