| 671 | ALWAYS_INLINE bool IsMatched() { return tdn.IsMatched(); } |
| 672 | ALWAYS_INLINE void SetMatched() { tdn.SetMatched(); } |
| 673 | ALWAYS_INLINE void SetNextUnMatched(DuplicateNode* node) { |
| 674 | tdn.SetNodeUnMatched(node); |
| 675 | } |
| 676 | |
| 677 | private: |
| 678 | /// Chain to next duplicate node, NULL when end of list. |
no test coverage detected