1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

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

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