| 47 | |
| 48 | protected: |
| 49 | struct LessInfo |
| 50 | { |
| 51 | bool operator()(TagInfo const & t1, TagInfo const & t2) const { return (t1.m_tag < t2.m_tag); } |
| 52 | bool operator()(TagInfo const & t1, Tag const & t2) const { return (t1.m_tag < t2); } |
| 53 | bool operator()(Tag const & t1, TagInfo const & t2) const { return (t1 < t2.m_tag); } |
| 54 | }; |
| 55 | |
| 56 | struct LessOffset |
| 57 | { |