mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 02:36:01 +02:00
Subscript was wrong.
This commit is contained in:
parent
544ec582b1
commit
1ba995780e
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ public class VariableManager extends SessionObject implements ICDIVariableManage
|
||||||
buffer.append('+').append(start);
|
buffer.append('+').append(start);
|
||||||
}
|
}
|
||||||
buffer.append(')');
|
buffer.append(')');
|
||||||
buffer.append('@').append(end - start + 1);
|
buffer.append('@').append(end - start);
|
||||||
return new VariableObject(obj, buffer.toString());
|
return new VariableObject(obj, buffer.toString());
|
||||||
}
|
}
|
||||||
throw new CDIException("Unknown variable object");
|
throw new CDIException("Unknown variable object");
|
||||||
|
|
Loading…
Add table
Reference in a new issue