From 1edf69df601881bf151ab4d2441bfb883b4ceb85 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Fri, 13 Aug 2021 23:21:26 +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 04078f9b0..f9cd3caec 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -263,6 +263,6 @@ int main() { cache.display(); std::cout << "Hits: " << cache.getHits() - << " Miss: " << cache.getPageFault(); + << " Miss: " << cache.getPageFault() << std::endl; return 0; }