replace boost regex with std

This commit is contained in:
2020-03-18 22:00:15 +01:00
父節點 b563f124c8
當前提交 f6258b2412
共有 4 個文件被更改,包括 10 次插入15 次删除

查看文件

@@ -62,7 +62,7 @@ namespace utils
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);