| 240 | } |
| 241 | |
| 242 | string DebugPrint(Stats const & s) |
| 243 | { |
| 244 | ostringstream ss; |
| 245 | ss << "Stats [\n"; |
| 246 | PrintMap("mwm", "Mwm to total data points number:", s.m_mwmToTotalDataPoints, ss); |
| 247 | PrintMap("country", "Country name to data points number:", s.m_countryToTotalDataPoints, ss); |
| 248 | ss << "]" << endl; |
| 249 | |
| 250 | return ss.str(); |
| 251 | } |
| 252 | } // namespace track_analyzing |
nothing calls this directly
no test coverage detected