| 64 | } |
| 65 | |
| 66 | std::string DebugPrint(Segment const & segment) |
| 67 | { |
| 68 | std::ostringstream out; |
| 69 | out << std::boolalpha << "Segment(" << segment.GetMwmId() << ", " << segment.GetFeatureId() << ", " |
| 70 | << segment.GetSegmentIdx() << ", " << segment.IsForward() << ")"; |
| 71 | return out.str(); |
| 72 | } |
| 73 | |
| 74 | std::string DebugPrint(SegmentEdge const & edge) |
| 75 | { |
nothing calls this directly
no test coverage detected