| 64 | }; |
| 65 | |
| 66 | bool SameOwner(const std::weak_ptr<const Dict>& cached, |
| 67 | const std::weak_ptr<const Dict>& current) { |
| 68 | return !cached.owner_before(current) && !current.owner_before(cached); |
| 69 | } |
| 70 | |
| 71 | bool SameDicts(const CacheEntry& cached, |
| 72 | const std::vector<std::weak_ptr<const Dict>>& current) { |