Completed PR #153: using steady timer instead of deadline timer to remove boost dependency when using standalone asio

This commit is contained in:
eidheim 2017-08-29 09:29:23 +02:00
commit f7ddeeda82
2 changed files with 6 additions and 4 deletions

View file

@ -12,7 +12,7 @@
#ifdef USE_STANDALONE_ASIO
#include <asio.hpp>
#include <asio/basic_waitable_timer.hpp>
#include <asio/steady_timer.hpp>
namespace SimpleWeb {
using error_code = std::error_code;
using errc = std::errc;