Skip to content
Snippets Groups Projects
Commit f891916a authored by hjk's avatar hjk
Browse files

debugger: compile fix

parent 6c3e2e63
No related branches found
No related tags found
No related merge requests found
...@@ -343,8 +343,9 @@ DebuggerEngineType DebuggerRunControlPrivate::engineForExecutable ...@@ -343,8 +343,9 @@ DebuggerEngineType DebuggerRunControlPrivate::engineForExecutable
return GdbEngineType; return GdbEngineType;
// We need the CDB debugger in order to be able to debug VS // We need the CDB debugger in order to be able to debug VS
// executables // executables.
if (checkDebugConfiguration(ProjectExplorer::ToolChain_MSVC, &m_errorMessage, 0, &m_settingsIdHint)) { if (d->checkDebugConfiguration(ProjectExplorer::ToolChain_MSVC,
&m_errorMessage, 0, &m_settingsIdHint)) {
if (enabledEngineTypes & CdbEngineType) if (enabledEngineTypes & CdbEngineType)
return CdbEngineType; return CdbEngineType;
m_errorMessage = msgEngineNotAvailable("Cdb Engine"); m_errorMessage = msgEngineNotAvailable("Cdb Engine");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment