mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[222568] Applied fix to prevent escaping of backslashes in C-Strings.
This commit is contained in:
parent
0c602b6de8
commit
4f501b788f
1 changed files with 1 additions and 0 deletions
|
@ -401,6 +401,7 @@ public class MIParser {
|
||||||
char c = buffer.charAt(index);
|
char c = buffer.charAt(index);
|
||||||
if (c == '\\') {
|
if (c == '\\') {
|
||||||
if (escape) {
|
if (escape) {
|
||||||
|
sb.append(c);
|
||||||
sb.append(c);
|
sb.append(c);
|
||||||
escape = false;
|
escape = false;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue