Warning fixes, general cleanup (#5053)
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled

This commit is contained in:
brainiac
2026-04-04 23:27:21 -07:00
committed by GitHub
parent 435224631f
commit 491b1edd12
107 changed files with 1279 additions and 1542 deletions
+3 -6
View File
@@ -18,12 +18,9 @@
#pragma once
#include "common/linked_list.h"
#include "common/misc_functions.h"
#include "common/mutex.h"
#include "common/types.h"
#include "common/zone_store.h"
#include "zone/client.h"
#include "zone/zonedb.h"
#include <mutex>
class Client;
@@ -118,5 +115,5 @@ public:
private:
LinkedList<Petition*> list;
Mutex PList_Mutex;
std::mutex PList_Mutex;
};