| 11155 | } |
| 11156 | |
| 11157 | pluralise::pluralise( std::size_t count, std::string const& label ) |
| 11158 | : m_count( count ), |
| 11159 | m_label( label ) |
| 11160 | {} |
| 11161 | |
| 11162 | std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ) { |
| 11163 | os << pluraliser.m_count << ' ' << pluraliser.m_label; |
nothing calls this directly
no outgoing calls
no test coverage detected