replace boost regex with std

这个提交包含在:
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);