| 107 | } |
| 108 | |
| 109 | void MarkerHandleSet::CombineWith(MarkerHandleSet *other) { |
| 110 | MarkerHandleNumber **pmhn = &root; |
| 111 | while (*pmhn) { |
| 112 | pmhn = &((*pmhn)->next); |
| 113 | } |
| 114 | *pmhn = other->root; |
| 115 | other->root = 0; |
| 116 | } |
| 117 | |
| 118 | LineMarkers::~LineMarkers() { |
| 119 | Init(); |