| 377 | } |
| 378 | |
| 379 | std::string LatLonToString(ms::LatLon const & latLon) |
| 380 | { |
| 381 | std::ostringstream out; |
| 382 | out << "[" |
| 383 | << "lat:" << latLon.m_lat << ", " |
| 384 | << "lon:" << latLon.m_lon << "]"; |
| 385 | return out.str(); |
| 386 | } |
| 387 | |
| 388 | std::string CompilationTypeToString(CompilationType compilationType) |
| 389 | { |
no outgoing calls
no test coverage detected