mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
Removed type erasure in containers
Summary: Refs T196 Using QVector as this is Qt's recommended container type. Reviewers: #swift_developers, rwinklmeier Reviewed By: #swift_developers, rwinklmeier Subscribers: rwinklmeier, jenkins Tags: #swift_pilot_client Maniphest Tasks: T196 Differential Revision: https://dev.swift-project.org/D61
This commit is contained in:
@@ -117,7 +117,7 @@ namespace BlackMisc
|
||||
|
||||
CPropertyIndexList CPropertyIndexVariantMap::indexes() const
|
||||
{
|
||||
return CPropertyIndexList::fromImpl(this->m_values.keys());
|
||||
return CSequence<CPropertyIndex>(this->m_values.keys());
|
||||
}
|
||||
|
||||
int CPropertyIndexVariantMap::size() const
|
||||
|
||||
Reference in New Issue
Block a user