From acc2e799f09e71694289b2935cb4cf0b9cbe3421 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Fri, 13 Aug 2021 17:04:22 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for e3ba29eb --- others/lru_cache.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index 1081d0b16..04078f9b0 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -57,7 +57,8 @@ namespace others { /** * @namespace lru_cache - * @brief Implementation of the [LRU caching algorithm](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)) + * @brief Implementation of the [LRU caching + * algorithm](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)) */ namespace lru_cache { /** @@ -72,9 +73,8 @@ class LRUCache { uint64_t hits = 0; ///< Total number of hits, or total number of times a page ///< was found in cache. - uint64_t pageFault = - 0; ///< Total number of miss/page fault, or total number of - ///< times a page was not found in cache + uint64_t pageFault = 0; ///< Total number of miss/page fault, or total + ///< number of times a page was not found in cache public: /**