core: cleanup header includes (#9088)

Cleanup some unneeded includes to speed up compilation
This commit is contained in:
user111111111111111111111111111111111
2025-01-17 15:21:35 +00:00
committed by GitHub
parent 0dc7367a70
commit 2bad73354a
97 changed files with 224 additions and 72 deletions

View File

@@ -4,6 +4,8 @@
#include "../protocols/FractionalScale.hpp"
#include "../protocols/SessionLock.hpp"
#include "../managers/SeatManager.hpp"
#include "../render/Renderer.hpp"
#include "../managers/input/InputManager.hpp"
#include <algorithm>
#include <ranges>
@@ -185,4 +187,4 @@ bool CSessionLockManager::shallConsiderLockMissing() {
static auto LOCKDEAD_SCREEN_DELAY = CConfigValue<Hyprlang::INT>("misc:lockdead_screen_delay");
return m_pSessionLock->mLockTimer.getMillis() > *LOCKDEAD_SCREEN_DELAY;
}
}