| 2846 | bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis ); |
| 2847 | |
| 2848 | struct pluralise { |
| 2849 | pluralise( std::size_t count, std::string const& label ); |
| 2850 | |
| 2851 | friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ); |
| 2852 | |
| 2853 | std::size_t m_count; |
| 2854 | std::string m_label; |
| 2855 | }; |
| 2856 | } |
| 2857 | |
| 2858 | // end catch_string_manip.h |
no outgoing calls
no test coverage detected