debugger: disable some warning, add FIXME

This commit is contained in:
hjk
2009-12-10 13:53:29 +01:00
parent de23834fc9
commit d0dfea5a8a

View File

@@ -2089,7 +2089,10 @@ void GdbEngine::extractDataFromInfoBreak(const QString &output, BreakpointData *
data->bpLineNumber = re.cap(4);
QString full = fullName(re.cap(3));
if (full.isEmpty()) {
qDebug() << "NO FULL NAME KNOWN FOR" << re.cap(3);
// FIXME: This happens without UsePreciseBreakpoints regularily.
// We need to revive that "fill full name mapping bit by bit"
// approach of 1.2.x
//qDebug() << "NO FULL NAME KNOWN FOR" << re.cap(3);
full = cleanupFullName(re.cap(3));
if (full.isEmpty()) {
qDebug() << "FILE IS NOT RESOLVABLE" << re.cap(3);