commit | 41ad83808e8b1c5fbbf5c0e9fcb38fe8b23f7e4e | [log] [tgz] |
---|---|---|
author | Ed Tanous <ed@tanous.net> | Thu Feb 13 17:00:14 2025 -0800 |
committer | Ed Tanous <ed@tanous.net> | Thu Feb 13 17:00:53 2025 -0800 |
tree | 7114483c77460124f6dbaaad51efe9d864ff5197 | |
parent | d884cdf76957a2fce6c92d4c8bf0954c7a533998 [diff] [blame] |
Fix deprecated asio usage And enable BOOST_ASIO_NO_DEPRECATED Change-Id: I83612501948e8c1c4a0df735aafc80e26af7f3cb Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/main.cpp b/src/main.cpp index ebaf1ab..e84abfd 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -640,7 +640,7 @@ iface->initialize(); - io.post([&]() { + boost::asio::post(io, [&]() { doListNames(io, interfaceMap, systemBus.get(), nameOwners, associationMaps, server); });