mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 05:15:43 +02:00
Bug 187519: Display array's address as its value.
This commit is contained in:
parent
9d8134c6ab
commit
70debe6329
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ public class CDebugUIUtils {
|
||||||
valueString = CDebugUIMessages.getString( "CDTDebugModelPresentation.24" ); //$NON-NLS-1$
|
valueString = CDebugUIMessages.getString( "CDTDebugModelPresentation.24" ); //$NON-NLS-1$
|
||||||
label.append( valueString );
|
label.append( valueString );
|
||||||
}
|
}
|
||||||
else if ( type == null || (!type.isArray() && !type.isStructure()) ) {
|
else if ( type == null || !type.isStructure() ) {
|
||||||
if ( valueString.length() > 0 ) {
|
if ( valueString.length() > 0 ) {
|
||||||
label.append( valueString );
|
label.append( valueString );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue