1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Return the "ISO C" string instead meaning the string with

the \t \n etc escaped characters.
This commit is contained in:
Alain Magloire 2002-10-04 14:42:23 +00:00
parent ce345efa78
commit 452737ae51

View file

@ -31,7 +31,7 @@ public class MIVarEvaluateExpressionInfo extends MIInfo {
if (var.equals("value")) {
MIValue val = results[i].getMIValue();
if (val instanceof MIConst) {
value = ((MIConst)val).getString();
value = ((MIConst)val).getCString();
}
}
}