Commit b8f9076d authored by Alexander Alekhin's avatar Alexander Alekhin

core: drop 'operator << (ostream, String)' overload

'cv::String' is 'std::string' in OpenCV 4.x
parent b2abd8ca
...@@ -73,12 +73,6 @@ public: ...@@ -73,12 +73,6 @@ public:
typedef Vec<channel_type, channels> vec_type; typedef Vec<channel_type, channels> vec_type;
}; };
static inline
std::ostream& operator << (std::ostream& os, const String& str)
{
return os << str.c_str();
}
static inline static inline
std::ostream& operator << (std::ostream& out, Ptr<Formatted> fmtd) std::ostream& operator << (std::ostream& out, Ptr<Formatted> fmtd)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment