replace boost regex with std

This commit is contained in:
2020-03-18 22:00:15 +01:00
والد 71bfa56e3b
کامیت 5df89f0491
4فایلهای تغییر یافته به همراه12 افزوده شده و 12 حذف شده

مشاهده پرونده

@@ -58,8 +58,8 @@ template <class T, class U> std::vector<U> getAll(std::multimap<T, U> map, T key
return result;
}
std::string regex_callback_replacer(boost::regex regex, const std::string &input,
std::function<std::string(boost::smatch &)> callback);
std::string regex_callback_replacer(std::regex regex, const std::string &input,
std::function<std::string(std::smatch &)> callback);
std::string readCompleteFile(std::string_view filepath);