diff options
author | nyamatongwe <unknown> | 2009-04-24 02:28:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-04-24 02:28:05 +0000 |
commit | 1746ffb8f8378671f828fb70a5b30f44db83c79c (patch) | |
tree | 361ed514e708128f64ee816dc840797e497493aa /src/LexPowerPro.cxx | |
parent | 865a213a8879baab1c67069ab1d2eae63deeea4b (diff) | |
download | scintilla-mirror-1746ffb8f8378671f828fb70a5b30f44db83c79c.tar.gz |
Added using namespace for OS X build.
Diffstat (limited to 'src/LexPowerPro.cxx')
-rw-r--r-- | src/LexPowerPro.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexPowerPro.cxx b/src/LexPowerPro.cxx index 095a6af1c..9320baf94 100644 --- a/src/LexPowerPro.cxx +++ b/src/LexPowerPro.cxx @@ -40,6 +40,9 @@ #include "SciLexer.h" #include "CharacterSet.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif static inline bool IsStreamCommentStyle(int style) { return style == SCE_POWERPRO_COMMENTBLOCK; |