blob: 2b489bd9d60957ff672f4b4415af977a3e773b40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/includes/LRUCache.h.orig 2018-08-14 08:00:27 UTC
+++ src/includes/LRUCache.h
@@ -60,7 +60,7 @@ template<class KeyType, class ValueType> class LRUCach
{
public:
bool operator()(const NodeType *a,
- const NodeType *b)
+ const NodeType *b) const
{
return a->key < b->key;
}
|