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); }