Skip to content

Commit cef071f

Browse files
committed
feat multi-index-lru: fix build on GCC
Tests: протестировано CI commit_hash:5a366de4489f5e3fd224aad63f7b7f72e3be3904
1 parent 143c100 commit cef071f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/multi-index-lru/include/userver/multi-index-lru/expirable_container.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class ExpirableContainer {
107107
/// and are reused on next insertion.
108108
template <typename IteratorType>
109109
bool erase(IteratorType it) {
110-
return container_.template erase(it);
110+
return container_.erase(it);
111111
}
112112

113113
/// Removes the @b key from container, leaving the node in an internal pool. The key and value are not destroyed

0 commit comments

Comments
 (0)