From 6d4ca5fb58f126f2bbe2b0fec707a366c3f0fcd1 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Wed, 18 Dec 2019 13:24:33 +0100 Subject: 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 --- src/plugins/perfprofiler/perfprofilerflamegraphmodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/perfprofiler') diff --git a/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h b/src/plugins/perfprofiler/perfprofilerflamegraphmodel.h index 712e96a5e8c..c5a42b53544 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 -- cgit v1.2.3