Ref T552 Removed old unused string-based QDataStream operator that would cause ambiguity with new ones.

This commit is contained in:
Mat Sutcliffe
2019-02-28 20:12:51 +00:00
parent 3454e08bb1
commit a6facc7e7c

View File

@@ -326,13 +326,6 @@ namespace BlackMisc
return stream;
}
//! Operator << for QDataStream
friend QDataStream &operator<<(QDataStream &stream, const Derived &obj)
{
stream << obj.stringForStreaming();
return stream;
}
//! Stream operator << for std::cout
friend std::ostream &operator<<(std::ostream &ostr, const Derived &obj)
{