diff --git a/server_http.hpp b/server_http.hpp index c65543d..2651eab 100644 --- a/server_http.hpp +++ b/server_http.hpp @@ -145,8 +145,8 @@ namespace SimpleWeb { class regex_orderable : public REGEX_NS::regex { std::string str; public: - regex_orderable(const char *regex_cstr) : std::regex(regex_cstr), str(regex_cstr) {} - regex_orderable(const std::string ®ex_str) : std::regex(regex_str), str(regex_str) {} + regex_orderable(const char *regex_cstr) : REGEX_NS::regex(regex_cstr), str(regex_cstr) {} + regex_orderable(const std::string ®ex_str) : REGEX_NS::regex(regex_str), str(regex_str) {} bool operator<(const regex_orderable &rhs) const { return str