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

@ -2,7 +2,6 @@
#include <filesystem>
#include <list>
#include <memory>
#include <mutex>
#include <string>
#include <thread>
@ -38,7 +37,7 @@ class IPC {
void socketListener();
void parseIPC(const std::string&);
std::jthread ipcThread_;
std::thread ipcThread_;
std::mutex callbackMutex_;
util::JsonParser parser_;
std::list<std::pair<std::string, EventHandler*>> callbacks_;