| 40 | } |
| 41 | |
| 42 | std::string DebugPrint(AddressEnricher::Stats const & s) |
| 43 | { |
| 44 | return "{ m_noStreet = " + std::to_string(s.m_noStreet) + "; m_existInterpol = " + std::to_string(s.m_existInterpol) + |
| 45 | "; m_existSingle = " + std::to_string(s.m_existSingle) + |
| 46 | "; m_enoughAddrs = " + std::to_string(s.m_enoughAddrs) + |
| 47 | "; m_addedSingle = " + std::to_string(s.m_addedSingle) + |
| 48 | "; m_addedBegEnd = " + std::to_string(s.m_addedBegEnd) + |
| 49 | "; m_addedInterpol = " + std::to_string(s.m_addedInterpol) + " }"; |
| 50 | } |
| 51 | |
| 52 | AddressEnricher::AddressEnricher() |
| 53 | { |
nothing calls this directly
no test coverage detected