mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
Fix for bug 80034: Expressions view does not display correct no. of elements in array.
This commit is contained in:
parent
15c37f6a0a
commit
cf4ba671c8
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-12-01 Mikhail Khodjaiants
|
||||
Fix for bug 80034: Expressions view does not display correct no. of elements in array.
|
||||
* CValueFactory.java
|
||||
|
||||
2004-12-01 Mikhail Khodjaiants
|
||||
Fix for bug 79454: Unable to remove a breakpoint set from the gdb console.
|
||||
* CBreakpointManager.java
|
||||
|
|
|
@ -28,7 +28,7 @@ public class CValueFactory {
|
|||
}
|
||||
|
||||
static public CIndexedValue createIndexedValue( AbstractCVariable parent, ICDIArrayValue cdiValue, int start, int end ) {
|
||||
return new CIndexedValue( parent, cdiValue, start, end - start );
|
||||
return new CIndexedValue( parent, cdiValue, start, end - start + 1 );
|
||||
}
|
||||
|
||||
static public CValue createGlobalValue( CVariable parent, ICDIValue cdiValue ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue