summaryrefslogtreecommitdiff
path: root/include/xline.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-04-02 13:06:48 -0400
committerAdam <Adam@anope.org>2014-04-02 13:08:14 -0400
commit52bc8e4bc799d38e92d38d497a2bd055950841bb (patch)
treeb80ea985f1adffa43ca046c014e3b81f9404db8d /include/xline.h
parentee133c03f206a7fab78a700b183fbc8684b9d6bf (diff)
Remove regex mods, use std::regex instead
Diffstat (limited to 'include/xline.h')
-rw-r--r--include/xline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xline.h b/include/xline.h
index ae9a1919b..3a1a190c3 100644
--- a/include/xline.h
+++ b/include/xline.h
@@ -18,7 +18,7 @@ class CoreExport XLine : public Serializable
void InitRegex();
public:
Anope::string mask;
- Regex *regex;
+ std::regex *regex;
Anope::string by;
time_t created;
time_t expires;