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

'cv::String' is 'std::string' in OpenCV 4.x
This commit is contained in:
Alexander Alekhin 2019-05-15 14:00:02 +03:00
parent b2abd8ca41
commit b8f9076de0

View File

@ -73,12 +73,6 @@ public:
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
std::ostream& operator << (std::ostream& out, Ptr<Formatted> fmtd)
{