mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 04:45:38 +02:00
copy some of the field back to the variable
This commit is contained in:
parent
b991ccf5e0
commit
67cd9ad95c
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue