From 097b005fdb44a7b1c81b22b365438bad00a592e3 Mon Sep 17 00:00:00 2001 From: micio Date: Wed, 19 Feb 2014 10:51:21 +0000 Subject: [PATCH] Ide/Debuggers/Gdb_MI2 : removed a couple of RLOGs git-svn-id: svn://ultimatepp.org/upp/trunk@6931 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/Debuggers/Gdb_MI2.cpp | 2 +- uppsrc/ide/Debuggers/MIValue.cpp | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/uppsrc/ide/Debuggers/Gdb_MI2.cpp b/uppsrc/ide/Debuggers/Gdb_MI2.cpp index ae40201e4..63996beb0 100644 --- a/uppsrc/ide/Debuggers/Gdb_MI2.cpp +++ b/uppsrc/ide/Debuggers/Gdb_MI2.cpp @@ -1257,7 +1257,7 @@ void Gdb_MI2::SyncWatches(MIValue val) } firstCall = true; } -RLOG(val.Dump()); + bool more = false; // simplify loop, returns when at least one simplify step happens diff --git a/uppsrc/ide/Debuggers/MIValue.cpp b/uppsrc/ide/Debuggers/MIValue.cpp index 1beff6ab9..e2b2a23a2 100644 --- a/uppsrc/ide/Debuggers/MIValue.cpp +++ b/uppsrc/ide/Debuggers/MIValue.cpp @@ -77,10 +77,6 @@ int MIValue::ParsePair(String &name, MIValue &val, String const &s, int i) // is starting wirh '[' or '{' take it as a value with empty name if(s[i] == '{' || s[i] == '[') { -/* -RLOG("STICAZZI...."); -RLOG("i = " << i << " s = " << s); -*/ name = ""; return val.ParseTuple(s, i); }