mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-09 21:45:34 +08:00
refs #802 Fixed internal compiler errors with Clang on Windows.
This commit is contained in:
committed by
Klaus Basan
parent
10ca2026a9
commit
3c40c1026e
@@ -74,6 +74,10 @@ namespace BlackMisc
|
||||
// CValueCachePacket
|
||||
////////////////////////////////
|
||||
|
||||
CValueCachePacket::CValueCachePacket(bool saved, bool valuesChanged) :
|
||||
m_saved(saved), m_valuesChanged(valuesChanged)
|
||||
{}
|
||||
|
||||
CValueCachePacket::CValueCachePacket(const CVariantMap &values, qint64 timestamp, bool saved, bool valuesChanged) :
|
||||
m_saved(saved), m_valuesChanged(valuesChanged)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user