aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas James <Eele1Ephe7uZahRie@tutanota.com>2026-04-04 17:20:26 +1100
committerNicolas James <Eele1Ephe7uZahRie@tutanota.com>2026-04-04 17:20:26 +1100
commit9f74e2801b10e8b788b04babe1bf916e8f1d0287 (patch)
tree460ee6512018bac56a0adc2a2b63763ba6042ca2
parent4e470cc77efe879abc22dfc20cbbbf24e0b1dd29 (diff)
Fix duplicate mutex shadowing 'real' mutex in base class
-rw-r--r--src/swapchain_monitor.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/swapchain_monitor.hh b/src/swapchain_monitor.hh
index 643b123..8ffcd04 100644
--- a/src/swapchain_monitor.hh
+++ b/src/swapchain_monitor.hh
@@ -103,9 +103,6 @@ class ReflexSwapchainMonitor final : public SwapchainMonitor {
// Much simpler synchronous waiting without another monitor thread - still need
// to synchronise across threads however.
class AntiLagSwapchainMonitor final : public SwapchainMonitor {
- private:
- std::mutex mutex;
-
public:
AntiLagSwapchainMonitor(const DeviceContext& device,
const bool was_low_latency_requested);