| 13357 | } |
| 13358 | |
| 13359 | auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& { |
| 13360 | lhs.append(rhs.currentData(), rhs.size()); |
| 13361 | return lhs; |
| 13362 | } |
| 13363 | |
| 13364 | } // namespace Catch |
| 13365 |
nothing calls this directly
no test coverage detected