MCPcopy Create free account
hub / github.com/Norbyte/ositools / DebugDumpTuple

Function DebugDumpTuple

OsiInterface/DebugMessages.cpp:119–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 1

Calls 1

DebugDumpTVFunction · 0.85

Tested by

no test coverage detected