| 47 | } |
| 48 | |
| 49 | void MakeMsgTuple(MsgTuple & msgTuple, TupleLL const & tuple) |
| 50 | { |
| 51 | auto head = tuple.Items.Head; |
| 52 | auto col = head->Next; |
| 53 | while (col != head) { |
| 54 | auto column = msgTuple.add_column(); |
| 55 | MakeMsgColumn(*column, col->Item.Value); |
| 56 | col = col->Next; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void MakeMsgTuple(MsgTuple & msgTuple, TuplePtrLL const & tuple) |
| 61 | { |
no test coverage detected