1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

[219202] Comment #6 - Fixed type returned for a composite.

This commit is contained in:
Pawel Piech 2010-03-03 21:07:08 +00:00
parent afdcf2e551
commit 742e7dfe92

View file

@ -638,7 +638,7 @@ public class MIExpressions extends AbstractDsfService implements IExpressions, I
case GDBType.GENERIC: case GDBType.GENERIC:
default: default:
if (getData().getNumChildren() > 0) { if (getData().getNumChildren() > 0) {
basicType = IExpressionDMData.BasicType.array; basicType = IExpressionDMData.BasicType.composite;
} else { } else {
basicType = IExpressionDMData.BasicType.basic; basicType = IExpressionDMData.BasicType.basic;
} }