mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 01:05:35 +08:00
refs #437 Adjust static assert, caught one more case of CVariant containing CVariant.
This commit is contained in:
@@ -149,7 +149,7 @@ namespace BlackMisc
|
||||
bool isEmpty() const { return this->m_values.isEmpty(); }
|
||||
|
||||
//! Value
|
||||
CVariant value(const CPropertyIndex &index) const { return CVariant::from(this->m_values.value(index)); }
|
||||
CVariant value(const CPropertyIndex &index) const { return this->m_values.value(index); }
|
||||
|
||||
//! Set value
|
||||
void value(const CPropertyIndex &index, const CVariant &value) { this->m_values.value(index, value); }
|
||||
|
||||
Reference in New Issue
Block a user