| 9619 | } |
| 9620 | |
| 9621 | pluralise::pluralise( std::size_t count, std::string const& label ) |
| 9622 | : m_count( count ), |
| 9623 | m_label( label ) |
| 9624 | {} |
| 9625 | |
| 9626 | std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ) { |
| 9627 | os << pluraliser.m_count << ' ' << pluraliser.m_label; |
nothing calls this directly
no outgoing calls
no test coverage detected