replace boost regex with std

This commit is contained in:
2020-03-18 22:00:15 +01:00
parent b563f124c8
commit f6258b2412
4 changed files with 10 additions and 15 deletions

View File

@ -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);