Remove (mostly) unused overloads of StringRef operator +

This commit is contained in:
Martin Hořeňovský 2019-09-08 21:01:33 +02:00
parent 293012a002
commit 9f4c4777a5
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
3 changed files with 10 additions and 22 deletions

View file

@ -115,10 +115,6 @@ namespace Catch {
auto isSubstring() const noexcept -> bool;
};
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> std::string;
auto operator + ( StringRef const& lhs, char const* rhs ) -> std::string;
auto operator + ( char const* lhs, StringRef const& rhs ) -> std::string;
auto operator += ( std::string& lhs, StringRef const& sr ) -> std::string&;
auto operator << ( std::ostream& os, StringRef const& sr ) -> std::ostream&;