MCPcopy Create free account
hub / github.com/comaps/comaps / DebugPrint

Function DebugPrint

libs/routing/turns.cpp:135–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133}
134
135string DebugPrint(SegmentRange const & segmentRange)
136{
137 stringstream out;
138 out << "SegmentRange "
139 << "{ m_featureId = " << DebugPrint(segmentRange.m_featureId) << ", m_startSegId = " << segmentRange.m_startSegId
140 << ", m_endSegId = " << segmentRange.m_endSegId << ", m_forward = " << segmentRange.m_forward
141 << ", m_start = " << DebugPrint(segmentRange.m_start) << ", m_end = " << DebugPrint(segmentRange.m_end) << " }";
142 return out.str();
143}
144
145namespace turns
146{

Callers

nothing calls this directly

Calls 2

GetTurnStringFunction · 0.85
ASSERTFunction · 0.85

Tested by

no test coverage detected