From 04b2cd71147afa83cf386ee81e49bcc1858bca22 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:49:34 +0530 Subject: [PATCH] Update others/lru_cache.cpp Co-authored-by: David Leal --- others/lru_cache.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index 1b6589b66..d03c9b206 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -50,6 +50,11 @@ #include /// for std::list #include /// for std::unordered_map +/** + * @namespace others + * @brief Other algorithms + */ +namespace others { /** * @namespace lru_cache * @brief Implementation of LRU caching algorithm