From d0dfea5a8aa7ec34ebb08b42e0b7184ae83bb0c0 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Thu, 10 Dec 2009 13:53:29 +0100
Subject: [PATCH] debugger: disable some warning, add FIXME

---
 src/plugins/debugger/gdb/gdbengine.cpp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 7593b8f9037..5dcef213a68 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -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);
-- 
GitLab