debug traces

This commit is contained in:
Valentin Balaschenko
2025-10-16 12:36:42 +01:00
parent f9c642c2b5
commit bcf9a1ae38
2 changed files with 12 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ public:
private:
std::unordered_map<Key, Mapped> data_;
std::queue<Key> order_; // assumes non-decreasing inserts for O(k) purge
std::queue<Key> order_;
mutable std::mutex mutex_;
};