From 422395ca56663cdaa5d66f1e45acc8e3e5a7b7f0 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:50:07 +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 6a113b287..199a24937 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -215,7 +215,7 @@ static void test_3() { log("Running Test-3..."); - lru_cache::LRUCache cache(4); + others::lru_cache::LRUCache cache(4); cache.refer(1); cache.refer(2); cache.refer(3);