CdbEngine: Remove unused field

This field in only set, but never read.

Change-Id: Ie42ccad32ca90e1b4a0dd9f4c2e213ea4c3ca180
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Jarek Kobus
2022-07-22 10:31:40 +02:00
parent 87e156fc41
commit c55fcac6c5
2 changed files with 3 additions and 4 deletions

View File

@@ -225,7 +225,6 @@ void CdbEngine::init()
m_hasDebuggee = false;
m_sourceStepInto = false;
m_watchPointX = m_watchPointY = 0;
m_ignoreCdbOutput = false;
m_autoBreakPointCorrection = false;
m_wow64State = wow64Uninitialized;
@@ -670,8 +669,9 @@ void CdbEngine::shutdownEngine()
return;
}
// No longer trigger anything from messages
m_ignoreCdbOutput = true;
m_process.setStdOutCallback({});
m_process.setStdErrCallback({});
// Go for kill if there are commands pending.
if (m_accessible && !commandsPending()) {
// detach (except console): Wait for debugger to finish.

View File

@@ -221,7 +221,6 @@ private:
QSet<Breakpoint> m_pendingBreakpointMap;
bool m_autoBreakPointCorrection = false;
QMultiHash<QString, quint64> m_symbolAddressCache;
bool m_ignoreCdbOutput = false;
QList<InterruptCallback> m_interrupCallbacks;
QList<SourcePathMapping> m_sourcePathMappings;
QScopedPointer<GdbMi> m_coreStopReason;