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:
parent
a7c5da0b08
commit
a7fa912306
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue