From 4bea23efed3406a6daa5ec87799948a1f2248894 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:50:24 +0530 Subject: [PATCH] Update others/lru_cache.cpp Co-authored-by: David Leal --- others/lru_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index d0c30afb5..80993f7e4 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -251,7 +251,7 @@ int main() { lru_tests::run_tests(); // Usage - lru_cache::LRUCache cache(4); + others::lru_cache::LRUCache cache(4); cache.refer(1); cache.refer(2); cache.refer(3);