From eb4194633670f8813094aa87eba54b07d5453196 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sat, 1 Dec 2018 13:01:36 +0100 Subject: wanda: remove boost asio and program_options --- src/wandad.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/wandad.cpp') diff --git a/src/wandad.cpp b/src/wandad.cpp index b7bc0fe..c0c2517 100644 --- a/src/wandad.cpp +++ b/src/wandad.cpp @@ -6,7 +6,7 @@ #include "wallpaper.hpp" #include "xdg.hpp" -#include +#include #include #include @@ -46,7 +46,7 @@ int main() auto wallpaper = wanda::random_pick(list); wanda::set_wallpaper(wallpaper); - auto service = boost::asio::io_service{}; + auto service = asio::io_service{}; auto socket_path = wanda::xdg_path_for(wanda::xdg_directory::runtime_dir, wanda::environment{}) / ".wanda_interface"; log->info("starting control interface on '{}'", socket_path.native()); @@ -63,7 +63,7 @@ int main() return; } - auto signals = boost::asio::signal_set{service, SIGINT}; + auto signals = asio::signal_set{service, SIGINT}; signals.async_wait([&](auto const &error, auto const signal) { if (!error && signal == SIGINT) { -- cgit v1.2.3