From ab09914434475bfdfe22518dc964cf086062bbbb Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Fri, 15 May 2020 15:55:11 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=B8=D0=BC=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/myx/base/endian_types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/myx/base/endian_types.hpp b/src/myx/base/endian_types.hpp index 42639d0..7397033 100644 --- a/src/myx/base/endian_types.hpp +++ b/src/myx/base/endian_types.hpp @@ -121,7 +121,7 @@ public: friend std::istream& operator >>( std::istream& in, LittleEndianType& b ) { T val; in >> val; b = val; return( in ); } std::string toStdString() { return( std::to_string( transform( m_data ) ) ); } #ifdef QT_CORE_LIB - friend QDebug& operator <<( QDebug& out, const BigEndianType b ) { out << T( b ); return( out ); } + friend QDebug& operator <<( QDebug& out, const LittleEndianType b ) { out << T( b ); return( out ); } QString toQString() { return( QString::number( transform( m_data ) ) ); } #endif }; // class LittleEndianType