replace boost regex with std

This commit is contained in:
2020-03-18 22:00:15 +01:00
szülő 71bfa56e3b
commit 5df89f0491
4 fájl változott, egészen pontosan 12 új sor hozzáadva és 12 régi sor törölve

Fájl megtekintése

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