diff options
author | Sadie Powell <sadie@witchery.services> | 2020-04-10 20:32:54 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-04-10 20:36:20 +0100 |
commit | c5680d6493a07e6625cc84db0639811bb1a45aee (patch) | |
tree | 5cc813edaeab5159888722deb030d8bd6c3ba692 /src/modules/extra/m_regex_stdlib.cpp | |
parent | 4a6fedd9324d87349a806c9c1d0ae6e7d3c1fd38 (diff) |
Fix an oversight in mkversions that caused it to not update extras.
Diffstat (limited to 'src/modules/extra/m_regex_stdlib.cpp')
-rw-r--r-- | src/modules/extra/m_regex_stdlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_regex_stdlib.cpp b/src/modules/extra/m_regex_stdlib.cpp index 80cf299f1..aecb37dd6 100644 --- a/src/modules/extra/m_regex_stdlib.cpp +++ b/src/modules/extra/m_regex_stdlib.cpp @@ -69,7 +69,7 @@ public: Version GetVersion() CXX11_OVERRIDE { - return Version("Regex Provider Module for std::regex", VF_VENDOR); + return Version("Provides a regular expression engine which uses the C++11 std::regex regular expression matching system.", VF_VENDOR); } void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE |