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:
parent
b5d4d08ec1
commit
00ab3049d9
1 changed files with 3 additions and 1 deletions
|
@ -357,7 +357,9 @@ public class GDBTypeParser {
|
||||||
} else if (c == '>') {
|
} else if (c == '>') {
|
||||||
count--;
|
count--;
|
||||||
}
|
}
|
||||||
sb.append((char)c);
|
if (c != ' ') {
|
||||||
|
sb.append((char)c);
|
||||||
|
}
|
||||||
} while (count > 0 && c != EOF);
|
} while (count > 0 && c != EOF);
|
||||||
} else if (c != EOF) {
|
} else if (c != EOF) {
|
||||||
ungetch();
|
ungetch();
|
||||||
|
|
Loading…
Add table
Reference in a new issue