Add a newline for slightly improved visual separation

This commit is contained in:
Jeremy Rifkin 2025-02-18 20:02:15 -06:00
parent c2b3b7e0a1
commit cebca81aa9
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -20,6 +20,7 @@ namespace detail {
mutable list_type lru;
std::unordered_map<K, list_iterator> map;
optional<std::size_t> max_size;
public:
lru_cache() = default;
lru_cache(optional<std::size_t> max_size) : max_size(max_size) {