From 79220ee6470577ede17532a4cc38d39a7b731086 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Fri, 22 Feb 2019 16:16:59 +0100 Subject: [PATCH] io-engine.hpp: fix missing namespace --- lib/base/io-engine.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/base/io-engine.hpp b/lib/base/io-engine.hpp index d08525081..ebb498818 100644 --- a/lib/base/io-engine.hpp +++ b/lib/base/io-engine.hpp @@ -30,6 +30,9 @@ #include #include +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 */