aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2019-12-18 13:24:33 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2019-12-18 13:32:54 +0000
commit6d4ca5fb58f126f2bbe2b0fec707a366c3f0fcd1 (patch)
treeb305d0a58625b312075b564e21416b49940df0ad /src/plugins/perfprofiler
parentb2e43e5114860216b661f0b8eb112973da8f08e3 (diff)
PerfProfiler: Fix MSVC warning (struct/class inconsistency)
src\plugins\perfprofiler\perfprofilerflamegraphmodel.cpp:83: warning: C4099: 'PerfProfiler::Internal::PerfProfilerFlameGraphData': type name first seen using 'struct' now seen using 'class' Change-Id: I23d4e04f7ad5c73dbfa6a87c87e7ff1fafa21d2a Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/perfprofiler')
-rw-r--r--src/plugins/perfprofiler/perfprofilerflamegraphmodel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h b/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h
index 712e96a5e8..c5a42b5354 100644
--- a/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h
+++ b/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h
@@ -34,7 +34,7 @@
namespace PerfProfiler {
namespace Internal {
-struct PerfProfilerFlameGraphData;
+class PerfProfilerFlameGraphData;
class PerfProfilerFlameGraphModel : public QAbstractItemModel
{
Q_OBJECT