diff --git a/src/core/qgsruntimeprofiler.h b/src/core/qgsruntimeprofiler.h index 8d1c36fb058..a5e409ae555 100644 --- a/src/core/qgsruntimeprofiler.h +++ b/src/core/qgsruntimeprofiler.h @@ -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> profileTimes() const { return mProfileTimes; } + const QList > profileTimes() const { return mProfileTimes; } /** * @brief clear Clear all profile data. @@ -70,7 +70,7 @@ class CORE_EXPORT QgsRuntimeProfiler QStack mGroupStack; QTime mProfileTime; QString mCurrentName; - QList> mProfileTimes; + QList > mProfileTimes; }; #endif // QGSRUNTIMEPROFILER_H