diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index b6759ee5f52..5ec7b9c33cf 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -140,8 +140,9 @@ void GlobalOrProjectAspect::toActiveMap(QVariantMap &data) const m_globalSettings->toMap(data); else if (m_projectSettings) m_projectSettings->toMap(data); - else - QTC_CHECK(false); + // The debugger accesses the data directly, so this can actually happen. + //else + // QTC_CHECK(false); } void GlobalOrProjectAspect::resetProjectToGlobalSettings()