diff options
author | nyamatongwe <devnull@localhost> | 2009-04-24 02:28:05 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-04-24 02:28:05 +0000 |
commit | ba377a6555e9ce7565f1e2d6fde2b0fa912a957d (patch) | |
tree | 361ed514e708128f64ee816dc840797e497493aa /src/LexTAL.cxx | |
parent | 24796f9cd61426321ec102e1b795cd92e7a4f7e8 (diff) | |
download | scintilla-mirror-ba377a6555e9ce7565f1e2d6fde2b0fa912a957d.tar.gz |
Added using namespace for OS X build.
Diffstat (limited to 'src/LexTAL.cxx')
-rw-r--r-- | src/LexTAL.cxx | 4 |
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); |