aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2008-10-22 09:15:44 +0000
committernyamatongwe <unknown>2008-10-22 09:15:44 +0000
commite79cb46e41ed31eea4075ffad48862225e615d79 (patch)
treefe4b653eb22de1712ef03ba0506def606e76d283 /src
parenta98d2c2faf4d61e6be1810d50acaaf75e4c6a581 (diff)
downloadscintilla-mirror-e79cb46e41ed31eea4075ffad48862225e615d79.tar.gz
Fixes a namespace problem with the new replaceable regex.
Diffstat (limited to 'src')
-rw-r--r--src/Document.cxx8
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