fix build with recent boost where io_service was removed (deprecated since many releases)

This commit is contained in:
Landry Breuil 2024-11-25 08:47:24 +01:00
parent 764157ddeb
commit 4819f2de21

View File

@ -205,7 +205,7 @@ GncFQQuoteSource::run_cmd (const StrVec& args, const std::string& json_string) c
try
{
std::future<std::vector<char> > out_buf, err_buf;
boost::asio::io_service svc;
boost::asio::io_context svc;
auto input_buf = bp::buffer (json_string);
bp::child process;