From 3a0ab1aff7ab6845c647f682fe7918cfacd0456c Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Wed, 14 Oct 2015 20:43:33 +0200 Subject: [PATCH] refs #488, workaround for gcc bug. Should be reverted when we have gcc > 4.7 --- src/blackmisc/pixmap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blackmisc/pixmap.h b/src/blackmisc/pixmap.h index 840d52674..62a946773 100644 --- a/src/blackmisc/pixmap.h +++ b/src/blackmisc/pixmap.h @@ -65,8 +65,9 @@ namespace BlackMisc }; } // namespace +//! \todo remove flags when gcc 4.7 streaming issue is resolved BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::CPixmap, ( - attr(o.m_array) + attr(o.m_array, flags()) )) Q_DECLARE_METATYPE(BlackMisc::CPixmap)