CPropertyModel: Make use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 12:02:14 -04:00
parent 90e71289a6
commit 6f35e8c760
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ int CPropertyModel::RecursiveBuildArrays(IProperty* pProperty, int ParentID)
else
{
MyID = mProperties.size();
mProperties << SProperty();
mProperties.push_back(SProperty());
}
mProperties[MyID].pProperty = pProperty;