From 6bf215b980bf650dd28bb593f21c98bab21a5dc8 Mon Sep 17 00:00:00 2001 From: Kip Hamiltons <48076495+KipHamiltons@users.noreply.github.com> Date: Mon, 2 Sep 2024 08:23:44 +1000 Subject: [PATCH] Remove dead mutex (#148) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This bad boy isn't used 😮 --- src/util/TypeMap.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/TypeMap.hpp b/src/util/TypeMap.hpp index c41ea8b0..fb469685 100644 --- a/src/util/TypeMap.hpp +++ b/src/util/TypeMap.hpp @@ -60,7 +60,6 @@ namespace util { private: /// The data variable where the data is stored for this map key. static std::shared_ptr data; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) - static std::mutex mutex; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) public: /**