Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorAlain Magloire2003-08-26 15:53:57 +0000
committerAlain Magloire2003-08-26 15:53:57 +0000
commit002435352176dc894f7130f5ebbb41e0be58307c (patch)
tree49782dc4e03a4f3a192dac72db2692dea055de2e /debug
parente3e45fd5fec450134ef4809ceda04afaddb25812 (diff)
downloadorg.eclipse.cdt-002435352176dc894f7130f5ebbb41e0be58307c.tar.gz
org.eclipse.cdt-002435352176dc894f7130f5ebbb41e0be58307c.tar.xz
org.eclipse.cdt-002435352176dc894f7130f5ebbb41e0be58307c.zip
do not add them.
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/VariableManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/VariableManager.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/VariableManager.java
index 3e44883df91..2c51b5e9ca5 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/VariableManager.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/VariableManager.java
@@ -310,7 +310,7 @@ public class VariableManager extends SessionObject implements ICDIVariableManage
obj.getPosition(),
obj.getStackDepth());
vo.setCastingArrayStart(obj.getCastingArrayStart() + start);
- vo.setCastingArrayEnd(obj.getCastingArrayEnd() + length);
+ vo.setCastingArrayEnd(length);
return vo;
}
throw new CDIException("Unknown variable object");

Back to the top