mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix compiling with older gcc versions
This commit is contained in:
parent
48949d642f
commit
c66906dbe2
@ -50,7 +50,7 @@ class CORE_EXPORT QgsRuntimeProfiler
|
||||
* @return A list of profile event names and times.
|
||||
* @note not available in python bindings
|
||||
*/
|
||||
const QList<QPair<QString, double>> profileTimes() const { return mProfileTimes; }
|
||||
const QList<QPair<QString, double > > profileTimes() const { return mProfileTimes; }
|
||||
|
||||
/**
|
||||
* @brief clear Clear all profile data.
|
||||
@ -70,7 +70,7 @@ class CORE_EXPORT QgsRuntimeProfiler
|
||||
QStack<QString> mGroupStack;
|
||||
QTime mProfileTime;
|
||||
QString mCurrentName;
|
||||
QList<QPair<QString, double>> mProfileTimes;
|
||||
QList<QPair<QString, double > > mProfileTimes;
|
||||
};
|
||||
|
||||
#endif // QGSRUNTIMEPROFILER_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user