refs #802 Fixed internal compiler errors with Clang on Windows.

This commit is contained in:
Mathew Sutcliffe
2016-11-12 23:37:39 +00:00
committed by Klaus Basan
parent 10ca2026a9
commit 3c40c1026e
4 changed files with 12 additions and 3 deletions

View File

@@ -73,7 +73,8 @@ namespace BlackMisc
using base_type = CDictionary;
//! Constructor.
CValueCachePacket(bool saved = false, bool valuesChanged = true) : m_saved(saved), m_valuesChanged(valuesChanged) {}
//! \fixme Defining this inline causes ICE in Clang on Windows
CValueCachePacket(bool saved = false, bool valuesChanged = true);
//! Construct from CVariantMap and a timestamp.
CValueCachePacket(const CVariantMap &values, qint64 timestamp, bool saved = false, bool valuesChanged = true);