diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-09-16 10:54:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-16 10:54:15 +0200 |
commit | bdfde49fb6d9a8787c072b759d4af27584308e1b (patch) | |
tree | 0d79854e65b0de68fd2f85f9a0f8f6f06e6b4aed /src/modules/extra/m_regex_stdlib.cpp | |
parent | 926361d233f4e6ea6a3964a070097fe637bd6bed (diff) | |
parent | 806e57433a38193ae14942ee60f573fe47f4b643 (diff) |
Merge pull request #1219 from SaberUK/master+directive
Rewrite the build system directive parser.
Diffstat (limited to 'src/modules/extra/m_regex_stdlib.cpp')
-rw-r--r-- | src/modules/extra/m_regex_stdlib.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/extra/m_regex_stdlib.cpp b/src/modules/extra/m_regex_stdlib.cpp index 8e7bd0da2..7a888ed72 100644 --- a/src/modules/extra/m_regex_stdlib.cpp +++ b/src/modules/extra/m_regex_stdlib.cpp @@ -16,12 +16,13 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/// $CompilerFlags: -std=c++11 + + #include "inspircd.h" #include "modules/regex.h" #include <regex> -/* $CompileFlags: -std=c++11 */ - class StdRegex : public Regex { std::regex regexcl; |