We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48949d6 commit c66906dCopy full SHA for c66906d
src/core/qgsruntimeprofiler.h
@@ -50,7 +50,7 @@ class CORE_EXPORT QgsRuntimeProfiler
50
* @return A list of profile event names and times.
51
* @note not available in python bindings
52
*/
53
- const QList<QPair<QString, double>> profileTimes() const { return mProfileTimes; }
+ const QList<QPair<QString, double > > profileTimes() const { return mProfileTimes; }
54
55
/**
56
* @brief clear Clear all profile data.
@@ -70,7 +70,7 @@ class CORE_EXPORT QgsRuntimeProfiler
70
QStack<QString> mGroupStack;
71
QTime mProfileTime;
72
QString mCurrentName;
73
- QList<QPair<QString, double>> mProfileTimes;
+ QList<QPair<QString, double > > mProfileTimes;
74
};
75
76
#endif // QGSRUNTIMEPROFILER_H
0 commit comments