mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 01:35:39 +02:00
remove comments.
This commit is contained in:
parent
3e7cdc86af
commit
2eb7c8d6d8
1 changed files with 0 additions and 20 deletions
|
@ -238,26 +238,6 @@ public class GDBTypeParser {
|
|||
}
|
||||
|
||||
void prependChild(int kind, int d) {
|
||||
/*
|
||||
GDBDerivedType dType = new GDBDerivedType(genericType, kind, d);
|
||||
if (gdbDerivedType != null) {
|
||||
// get to the last node in the list and add the new to it
|
||||
GDBType leaf = genericType;
|
||||
GDBDerivedType node;
|
||||
boolean keepGoing = true;
|
||||
for (node = gdbDerivedType; keepGoing;) {
|
||||
leaf = node.getChild();
|
||||
if (leaf instanceof GDBDerivedType) {
|
||||
node = (GDBDerivedType) leaf;
|
||||
} else {
|
||||
keepGoing = false;
|
||||
}
|
||||
}
|
||||
node.setChild(dType);
|
||||
} else {
|
||||
gdbDerivedType = dType;
|
||||
}
|
||||
*/
|
||||
if (gdbDerivedType == null) {
|
||||
gdbDerivedType = new GDBDerivedType(genericType, kind, d);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue