1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Subscript was wrong.

This commit is contained in:
Alain Magloire 2003-03-13 20:14:11 +00:00
parent 544ec582b1
commit 1ba995780e

View file

@ -314,7 +314,7 @@ public class VariableManager extends SessionObject implements ICDIVariableManage
buffer.append('+').append(start);
}
buffer.append(')');
buffer.append('@').append(end - start + 1);
buffer.append('@').append(end - start);
return new VariableObject(obj, buffer.toString());
}
throw new CDIException("Unknown variable object");