diff options
author | hjk <[email protected]> | 2025-04-09 10:36:39 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-10 08:11:05 +0000 |
commit | 6af62f8a66ac3f9e09584d287a738cd1b3116395 (patch) | |
tree | 005836ecfbae4bad5ddf53fd72e71796822a9325 /app/perfunwind.h | |
parent | 65ab0ff4a3edcca5eb383e5eb32007fd4bd28947 (diff) |
It's effectively the same in Qt 6, and QList is more direct.
Change-Id: I0f23b765f2f8930a715e378212b9bb4f38fcef54
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'app/perfunwind.h')
-rw-r--r-- | app/perfunwind.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/perfunwind.h b/app/perfunwind.h index fdb78b0..574e9e7 100644 --- a/app/perfunwind.h +++ b/app/perfunwind.h @@ -101,7 +101,7 @@ public: firstGuessedFrame(-1), isInterworking(false) {} QHash<qint32, QHash<quint64, Dwarf_Word>> stackValues; - QVector<qint32> frames; + QList<qint32> frames; PerfUnwind *unwind; const PerfRecordSample *sample; int maxFrames; @@ -303,7 +303,7 @@ private: QHash<Location, qint32> m_locations; QHash<qint32, Symbol> m_symbols; QHash<quint64, qint32> m_attributeIds; - QVector<PerfEventAttributes> m_attributes; + QList<PerfEventAttributes> m_attributes; QHash<QByteArray, QByteArray> m_buildIds; uint m_lastEventBufferSize; |