1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

fix PR 169223, the parser did not recognize the class std::string

This commit is contained in:
Alain Magloire 2006-12-29 04:03:56 +00:00
parent b5d4d08ec1
commit 00ab3049d9

View file

@ -357,7 +357,9 @@ public class GDBTypeParser {
} else if (c == '>') {
count--;
}
if (c != ' ') {
sb.append((char)c);
}
} while (count > 0 && c != EOF);
} else if (c != EOF) {
ungetch();