io-engine.hpp: fix missing namespace

This commit is contained in:
Alexander A. Klimov 2019-02-22 16:16:59 +01:00
parent 8b3efe5759
commit 79220ee647

View File

@ -30,6 +30,9 @@
#include <boost/asio/io_service.hpp> #include <boost/asio/io_service.hpp>
#include <boost/asio/spawn.hpp> #include <boost/asio/spawn.hpp>
namespace icinga
{
/** /**
* Scope lock for CPU-bound work done in an I/O thread * Scope lock for CPU-bound work done in an I/O thread
* *
@ -127,4 +130,6 @@ private:
boost::asio::deadline_timer m_Timer; boost::asio::deadline_timer m_Timer;
}; };
}
#endif /* IO_ENGINE_H */ #endif /* IO_ENGINE_H */