Add missing include to fix non-unity builds

This commit fixes the following build error:

    [ 55%] Building CXX object lib/icinga/CMakeFiles/icinga.dir/usergroup.cpp.o
    lib/icinga/usergroup.cpp:79:24: error: incomplete type ‘icinga::Notification’ used in nested name specifier
       79 | std::set<Notification::Ptr> UserGroup::GetNotifications() const
          |                        ^~~
This commit is contained in:
Julian Brost 2021-11-17 16:11:15 +01:00
parent e1c6c9eb19
commit 2ad0a4b8c3
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include "icinga/usergroup.hpp"
#include "icinga/usergroup-ti.cpp"
#include "icinga/notification.hpp"
#include "config/objectrule.hpp"
#include "config/configitem.hpp"
#include "base/configtype.hpp"