clang-format and clang-tidy fixes for 4e223bc3

This commit is contained in:
github-actions 2021-08-12 18:19:02 +00:00
parent 4e223bc3c7
commit fd8bb59e06

View File

@ -68,7 +68,7 @@ class LRUCache {
int hits = 0; ///< Total number of hits, or total number of times a page
///< was found in cache.
int pageFault = 0; ///< Total number of miss/page fault, or total number of
///< times a page was not found in cache
///< times a page was not found in cache
public:
/**