From 63e72c7834642bbd29ee47767e13ebd35b0c3342 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:49:44 +0530 Subject: [PATCH] Update others/lru_cache.cpp Co-authored-by: David Leal --- others/lru_cache.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index d03c9b206..368de4e5f 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -134,6 +134,7 @@ class LRUCache { int getPageFault() const { return pageFault; } }; +} // namespace others } // namespace lru_cache namespace lru_tests {