diff options
author | nyamatongwe <unknown> | 2008-10-22 09:15:44 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2008-10-22 09:15:44 +0000 |
commit | e79cb46e41ed31eea4075ffad48862225e615d79 (patch) | |
tree | fe4b653eb22de1712ef03ba0506def606e76d283 /src | |
parent | a98d2c2faf4d61e6be1810d50acaaf75e4c6a581 (diff) | |
download | scintilla-mirror-e79cb46e41ed31eea4075ffad48862225e615d79.tar.gz |
Fixes a namespace problem with the new replaceable regex.
Diffstat (limited to 'src')
-rw-r--r-- | src/Document.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index bded3a32a..a5cdf2fb6 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -1657,8 +1657,16 @@ const char *BuiltinRegex::SubstituteByPosition(Document* doc, const char *text, #ifndef SCI_OWNREGEX +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + RegexSearchBase *CreateRegexSearch(CharClassify *charClassTable) { return new BuiltinRegex(charClassTable); } +#ifdef SCI_NAMESPACE +} +#endif + #endif |