fix freebsd compilation

This commit is contained in:
zjeffer
2025-02-19 21:15:18 +01:00
parent a4989cedae
commit 37c6cd42f5
3 changed files with 2 additions and 4 deletions

View File

@ -45,7 +45,7 @@ std::filesystem::path IPC::getSocketFolder(const char* instanceSig) {
IPC::IPC() {
// will start IPC and relay events to parseIPC
ipcThread_ = std::jthread([this]() { socketListener(); });
ipcThread_ = std::thread([this]() { socketListener(); });
}
IPC::~IPC() {

View File

@ -7,7 +7,6 @@
#include <algorithm>
#include <shared_mutex>
#include <thread>
#include <vector>
#include "modules/hyprland/backend.hpp"