From a6facc7e7c8045e912a395af8cc239f9a945739f Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Thu, 28 Feb 2019 20:12:51 +0000 Subject: [PATCH] Ref T552 Removed old unused string-based QDataStream operator that would cause ambiguity with new ones. --- src/blackmisc/stringutils.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/blackmisc/stringutils.h b/src/blackmisc/stringutils.h index fb7ae3c60..9713c68ed 100644 --- a/src/blackmisc/stringutils.h +++ b/src/blackmisc/stringutils.h @@ -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) {