| 96 | } |
| 97 | |
| 98 | std::string DebugPrint(JointSegment const & jointSegment) |
| 99 | { |
| 100 | std::ostringstream out; |
| 101 | if (jointSegment.IsFake()) |
| 102 | out << "[FAKE]"; |
| 103 | |
| 104 | out << std::boolalpha << "JointSegment(" << jointSegment.GetMwmId() << ", " << jointSegment.GetFeatureId() << ", " |
| 105 | << "[" << jointSegment.GetStartSegmentId() << " => " << jointSegment.GetEndSegmentId() << "], " |
| 106 | << jointSegment.IsForward() << ")"; |
| 107 | return out.str(); |
| 108 | } |
| 109 | } // namespace routing |
| 110 | |
| 111 | namespace std |
nothing calls this directly
no test coverage detected