From bb7cf80a200b4457232e64363a07aa0b6d3ad697 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Mon, 21 Mar 2016 00:25:14 +0000 Subject: [PATCH] Metatuple must ignore CStatusMessage::m_handledByObjects, as it doesn't know about the mutex. --- src/blackmisc/statusmessage.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/blackmisc/statusmessage.h b/src/blackmisc/statusmessage.h index 92be72bc7..f0f754e89 100644 --- a/src/blackmisc/statusmessage.h +++ b/src/blackmisc/statusmessage.h @@ -334,8 +334,7 @@ BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::CStatusMessage, ( o.m_severity, o.m_message, o.m_args, - o.m_timestampMSecsSinceEpoch, - attr(o.m_handledByObjects, flags < DisabledForHashing | DisabledForJson | DisabledForComparison | DisabledForMarshalling > ()) + o.m_timestampMSecsSinceEpoch )) Q_DECLARE_METATYPE(BlackMisc::CStatusMessage) Q_DECLARE_METATYPE(BlackMisc::CStatusMessage::StatusSeverity)