summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChrisTX <xpipe@hotmail.de>2012-09-22 06:11:43 +0200
committerattilamolnar <attilamolnar@hush.com>2012-09-22 15:52:18 +0200
commit3b63bc840f540d8bfdae37b6860083c18f99815c (patch)
tree4a6adec1fdc7bf748643ef48ecea2bc70f82e569 /docs
parent3f72ca011ca25f0c7fab559169ac77b92173ffec (diff)
m_regex_stdlib: A regex provider for the C++11 container std::regex
For it to work you need a standards compliant implementation as for instance Visual C++ 2010 and 2012 deliver. GCC's libstdc++ does not implement this class yet.
Diffstat (limited to 'docs')
-rw-r--r--docs/conf/modules.conf.example11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example
index 84e3b26ab..b3034d3e9 100644
--- a/docs/conf/modules.conf.example
+++ b/docs/conf/modules.conf.example
@@ -1389,6 +1389,17 @@
#<module name="m_regex_posix.so">
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+# Regular Expression Provider for C++11 std::regex Regular Expressions.
+# This module works on any fully compliant implementation of the C++11
+# std::regex container. Examples for such are Visual C++ 2010 and newer
+# but not libstdc++ (which GCC uses)
+#<module name="m_regex_stdlib.so">
+
+# Specify the Regular Expression engine to use here. Valid settings are
+# bre, ere, awk, grep, egrep, ecmascript (default if not specified)
+#<stdregex type="ecmascript">
+
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Regular Expression Provider for TRE Regular Expressions.
# This is the same regular expression engine used by UnrealIRCd, so
# if you are most familiar with the syntax of /spamfilter from there,