Update others/lru_cache.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Nitin Sharma 2021-08-13 23:21:26 +05:30 committed by GitHub
parent acc2e799f0
commit 1edf69df60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,6 +263,6 @@ int main() {
cache.display();
std::cout << "Hits: " << cache.getHits()
<< " Miss: " << cache.getPageFault();
<< " Miss: " << cache.getPageFault() << std::endl;
return 0;
}