1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 223025

Used to check for MIList twice instead of checking for MITuple.
This commit is contained in:
Marc Khouzam 2008-03-18 16:47:34 +00:00
parent a7c5da0b08
commit a7fa912306

View file

@ -37,7 +37,7 @@ public class MIStackListArgumentsInfo extends MIInfo {
MIValue val = results[i].getMIValue();
if (val instanceof MIList) {
parseStack((MIList)val, aList);
} else if (val instanceof MIList) {
} else if (val instanceof MITuple) {
parseStack((MITuple)val, aList);
}
}