Fixed some issues with GCC.
This commit is contained in:
@ -26,7 +26,7 @@
|
||||
|
||||
class Instance;
|
||||
|
||||
class LIBMMCINST_EXPORT InstanceList : public QObject, public SigList<QSharedPointer<Instance>>
|
||||
class LIBMMCINST_EXPORT InstanceList : public QObject, public SigList< QSharedPointer<Instance> >
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
@ -100,7 +100,7 @@ InstTypeList InstanceLoader::typeList()
|
||||
{
|
||||
InstTypeList typeList;
|
||||
|
||||
for (auto iter = m_typeMap.begin(); iter != m_typeMap.end(); iter++)
|
||||
for (QMap<QString, InstanceTypeInterface *>::iterator iter = m_typeMap.begin(); iter != m_typeMap.end(); iter++)
|
||||
{
|
||||
typeList.append(*iter);
|
||||
}
|
||||
|
Reference in New Issue
Block a user