Skip to content
Snippets Groups Projects
Commit 6e8fba46 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

remove dead code

parent 04f6b3d8
No related branches found
No related tags found
No related merge requests found
...@@ -42,16 +42,8 @@ QTextStream &operator<<(QTextStream &os, const GdbMi &mi) ...@@ -42,16 +42,8 @@ QTextStream &operator<<(QTextStream &os, const GdbMi &mi)
return os << mi.toString(); return os << mi.toString();
} }
//static void skipSpaces(const char *&from, const char *to)
//{
// while (from != to && QChar(*from).isSpace())
// ++from;
//}
void GdbMi::parseResultOrValue(const char *&from, const char *to) void GdbMi::parseResultOrValue(const char *&from, const char *to)
{ {
//skipSpaces(from, to);
while (from != to && QChar(*from).isSpace()) while (from != to && QChar(*from).isSpace())
++from; ++from;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment