Skip to content

Commit c66906d

Browse files
committed
Fix compiling with older gcc versions
1 parent 48949d6 commit c66906d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsruntimeprofiler.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CORE_EXPORT QgsRuntimeProfiler
5050
* @return A list of profile event names and times.
5151
* @note not available in python bindings
5252
*/
53-
const QList<QPair<QString, double>> profileTimes() const { return mProfileTimes; }
53+
const QList<QPair<QString, double > > profileTimes() const { return mProfileTimes; }
5454

5555
/**
5656
* @brief clear Clear all profile data.
@@ -70,7 +70,7 @@ class CORE_EXPORT QgsRuntimeProfiler
7070
QStack<QString> mGroupStack;
7171
QTime mProfileTime;
7272
QString mCurrentName;
73-
QList<QPair<QString, double>> mProfileTimes;
73+
QList<QPair<QString, double > > mProfileTimes;
7474
};
7575

7676
#endif // QGSRUNTIMEPROFILER_H

0 commit comments

Comments
 (0)