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/perfsymboltable.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/perfsymboltable.h')
-rw-r--r-- | app/perfsymboltable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/perfsymboltable.h b/app/perfsymboltable.h index 3387245..39f44a2 100644 --- a/app/perfsymboltable.h +++ b/app/perfsymboltable.h @@ -109,7 +109,7 @@ private: }; QFile m_perfMapFile; - QVector<PerfMapSymbol> m_perfMap; + QList<PerfMapSymbol> m_perfMap; bool m_hasPerfMap; bool m_cacheIsDirty; @@ -129,7 +129,7 @@ private: Dwarf_Files *files, Dwarf_Addr entry, qint32 parentLocationId); int insertSubprogram(CuDieRangeMapping *cudie, Dwarf_Die *top, Dwarf_Addr entry, quint64 offset, quint64 size, quint64 relAddr, qint32 binaryId, qint32 binaryPathId, qint32 actualPathId, qint32 inlineParent, bool isKernel); - qint32 parseDwarf(CuDieRangeMapping *cudie, SubProgramDie *subprogram, const QVector<Dwarf_Die> &inlined, + qint32 parseDwarf(CuDieRangeMapping *cudie, SubProgramDie *subprogram, const QList<Dwarf_Die> &inlined, Dwarf_Addr bias, quint64 offset, quint64 size, quint64 relAddr, qint32 binaryId, qint32 binaryPathId, qint32 actualPathId, bool isKernel); }; |