1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

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

This commit is contained in:
Alain Magloire 2006-12-30 23:59:50 +00:00
parent ce2fc57e4b
commit 386259928b

View file

@ -140,7 +140,7 @@ public class GDBTypeParser {
gdbType = null;
}
}
return sb.toString();
return sb.toString().trim();
}