internal: include missing header (#3464)

This commit is contained in:
memchr 2023-10-01 11:26:10 +00:00 committed by GitHub
parent a2a29a60e5
commit 161fee1d82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
#include "MiscFunctions.hpp"
#include <string>
#include "../debug/Log.hpp"
#include "Watchdog.hpp"
void handleWrapped(wl_listener* listener, void* data) {
CHyprWLListener::SWrapper* pWrap = wl_container_of(listener, pWrap, m_sListener);
@ -56,4 +57,4 @@ void CHyprWLListener::initCallback(wl_signal* pSignal, std::function<void(void*,
void CHyprWLListener::emit(void* data) {
m_pCallback(m_pOwner, data);
}
}