1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +02:00

copy some of the field back to the variable

This commit is contained in:
Alain Magloire 2004-05-28 14:12:35 +00:00
parent b991ccf5e0
commit 67cd9ad95c

View file

@ -54,6 +54,9 @@ public class VariableObject extends CObject implements ICDIVariableObject {
public VariableObject(VariableObject obj) {
super(obj.getTarget());
name = obj.getName();
fullName = obj.fullName;
sizeof = obj.sizeof;
type = obj.type;
try {
frame = obj.getStackFrame();
} catch (CDIException e) {