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:
parent
ce345efa78
commit
452737ae51
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue