| 11278 | } |
| 11279 | |
| 11280 | auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& { |
| 11281 | lhs.append(rhs.currentData(), rhs.size()); |
| 11282 | return lhs; |
| 11283 | } |
| 11284 | |
| 11285 | } // namespace Catch |
| 11286 |
nothing calls this directly
no test coverage detected