From 790620a5dfc002e25786aa583cc1540447f1eddf Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Sat, 25 Nov 2023 11:56:44 +0000 Subject: [PATCH] 1664 memory cache --- thirdparty/lru_ordered_memory_constrained_cache.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/thirdparty/lru_ordered_memory_constrained_cache.hpp b/thirdparty/lru_ordered_memory_constrained_cache.hpp index 71908613..e10fffbc 100644 --- a/thirdparty/lru_ordered_memory_constrained_cache.hpp +++ b/thirdparty/lru_ordered_memory_constrained_cache.hpp @@ -17,6 +17,7 @@ #include #include #include +#include #define CACHE_READ_LOCK( _M_ ) std::shared_lock< std::shared_mutex > _read_lock_( _M_ ); #define CACHE_WRITE_LOCK( _M_ ) std::unique_lock< std::shared_mutex > _write_lock_( _M_ );