Skip to content

Commit

Permalink
Fix compiling with older gcc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 10, 2016
1 parent 48949d6 commit c66906d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsruntimeprofiler.h
Expand Up @@ -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.
Expand All @@ -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

0 comments on commit c66906d

Please sign in to comment.