From 1fdc61b1b29e4621cd2eb14c011d348b7d46ba59 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:49:22 +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 523b40180..1b6589b66 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -155,7 +155,7 @@ static void test_1() { log("Running Test-1..."); - lru_cache::LRUCache cache(4); + others::lru_cache::LRUCache cache(4); cache.refer(1); cache.refer(2); cache.refer(5);