| 66 | private: |
| 67 | /** Comparison functor. */ |
| 68 | struct Compare { |
| 69 | bool operator()(const value_type& a, const key_type& b) const |
| 70 | { |
| 71 | return a.first < b; |
| 72 | } |
| 73 | |
| 74 | bool operator()(const key_type& a, const value_type& b) const |
| 75 | { |
| 76 | return a < b.first; |
| 77 | } |
| 78 | }; |
| 79 | |
| 80 | unsigned m_minOverlap; |
| 81 | bool m_dirty; |