aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/frontend/zipfs.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-02-24 13:36:44 +0100
committerStefan Boberg <[email protected]>2026-02-24 13:36:44 +0100
commit075bac3ca870a1297e9f62230d56e63aec13a77d (patch)
tree367a820685a829adbab31cd1374b1af2cece4b7e /src/zenserver/frontend/zipfs.h
parentFix correctness and concurrency bugs found during code review (diff)
downloadzen-075bac3ca870a1297e9f62230d56e63aec13a77d.tar.xz
zen-075bac3ca870a1297e9f62230d56e63aec13a77d.zip
Revert "Fix correctness and concurrency bugs found during code review"
This reverts commit 3c89c486338890ce39ddebe5be4722a09e85701a.
Diffstat (limited to 'src/zenserver/frontend/zipfs.h')
-rw-r--r--src/zenserver/frontend/zipfs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/zenserver/frontend/zipfs.h b/src/zenserver/frontend/zipfs.h
index 19f96567c..1fa7da451 100644
--- a/src/zenserver/frontend/zipfs.h
+++ b/src/zenserver/frontend/zipfs.h
@@ -3,7 +3,6 @@
#pragma once
#include <zencore/iobuffer.h>
-#include <zencore/thread.h>
#include <unordered_map>
@@ -21,7 +20,6 @@ public:
private:
using FileItem = MemoryView;
using FileMap = std::unordered_map<std::string_view, FileItem>;
- mutable RwLock m_FilesLock;
FileMap mutable m_Files;
IoBuffer m_Buffer;
};