From 68b6b1b3660d72c123c0ee65b8d98afd0db6db82 Mon Sep 17 00:00:00 2001 From: jbaldwin Date: Sat, 25 Nov 2023 14:50:20 -0700 Subject: [PATCH] try without template template --- inc/cappuccino/utlru_cache.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/cappuccino/utlru_cache.hpp b/inc/cappuccino/utlru_cache.hpp index b937c32..82ee65d 100644 --- a/inc/cappuccino/utlru_cache.hpp +++ b/inc/cappuccino/utlru_cache.hpp @@ -189,8 +189,8 @@ class utlru_cache * @param peek Should the find act like all the items were not used? * @return All input keys to either a std::nullopt if it doesn't exist, or the value if it does. */ - template typename range_type, class range_allocator_type> - auto find_range(const range_type& key_range, peek peek = peek::no) + template + auto find_range(const range_type& key_range, peek peek = peek::no) -> std::vector>> { std::vector>> output;