| 11546 | } |
| 11547 | |
| 11548 | auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& { |
| 11549 | lhs.append(rhs.currentData(), rhs.size()); |
| 11550 | return lhs; |
| 11551 | } |
| 11552 | |
| 11553 | } // namespace Catch |
| 11554 |
nothing calls this directly
no test coverage detected