1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 12:25:35 +02:00

Bug 187519: Display array's address as its value.

This commit is contained in:
Mikhail Khodjaiants 2007-05-17 11:55:52 +00:00
parent 9d8134c6ab
commit 70debe6329

View file

@ -118,7 +118,7 @@ public class CDebugUIUtils {
valueString = CDebugUIMessages.getString( "CDTDebugModelPresentation.24" ); //$NON-NLS-1$
label.append( valueString );
}
else if ( type == null || (!type.isArray() && !type.isStructure()) ) {
else if ( type == null || !type.isStructure() ) {
if ( valueString.length() > 0 ) {
label.append( valueString );
}