diff options
author | Adam <Adam@anope.org> | 2014-04-02 13:06:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-04-02 13:08:14 -0400 |
commit | 52bc8e4bc799d38e92d38d497a2bd055950841bb (patch) | |
tree | b80ea985f1adffa43ca046c014e3b81f9404db8d /include/xline.h | |
parent | ee133c03f206a7fab78a700b183fbc8684b9d6bf (diff) |
Remove regex mods, use std::regex instead
Diffstat (limited to 'include/xline.h')
-rw-r--r-- | include/xline.h | 2 |
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; |