| 117 | } |
| 118 | |
| 119 | void DebugDumpTuple(std::wstringstream & ss, TupleLL const & tuple) |
| 120 | { |
| 121 | auto head = tuple.Items.Head; |
| 122 | auto cur = head->Next; |
| 123 | while (cur != head) { |
| 124 | DebugDumpTV(ss, cur->Item.Value); |
| 125 | ss << ", "; |
| 126 | cur = cur->Next; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void DebugDumpTuple(std::wstringstream & ss, TuplePtrLL const & tuple) |
| 131 | { |
no test coverage detected