| 473 | auto operator << ( std::ostream& os, StringRef const& sr ) -> std::ostream&; |
| 474 | |
| 475 | inline auto operator "" _sr( char const* rawChars, std::size_t size ) noexcept -> StringRef { |
| 476 | return StringRef( rawChars, size ); |
| 477 | } |
| 478 | |
| 479 | } // namespace Catch |
| 480 |