diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-12-01 13:01:36 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-12-01 13:01:36 +0100 |
| commit | eb4194633670f8813094aa87eba54b07d5453196 (patch) | |
| tree | cc2424a4f43a2b0bf0201c36ee527790be07c1ea /src/wandac.cpp | |
| parent | 4ded35e5f876d5e8daab47e429450f9bf5e32666 (diff) | |
| download | wanda-eb4194633670f8813094aa87eba54b07d5453196.tar.xz wanda-eb4194633670f8813094aa87eba54b07d5453196.zip | |
wanda: remove boost asio and program_options
Diffstat (limited to 'src/wandac.cpp')
| -rw-r--r-- | src/wandac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wandac.cpp b/src/wandac.cpp index 9835b38..6b218c4 100644 --- a/src/wandac.cpp +++ b/src/wandac.cpp @@ -2,7 +2,7 @@ #include "environment.hpp" #include "xdg.hpp" -#include <boost/asio.hpp> +#include <asio.hpp> #include <filesystem> #include <iostream> @@ -12,7 +12,7 @@ int main() { auto environment = wanda::environment{}; auto interface = wanda::xdg_path_for(wanda::xdg_directory::runtime_dir, environment) / ".wanda_interface"; - auto service = boost::asio::io_service{}; + auto service = asio::io_service{}; std::clog << "[wandac::main] Initializing commander for socket '" << interface.native() << "'\n"; auto commander = wanda::commander{service, interface}; |
