1
0
Fork 0
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:
Pawel Piech 2008-03-14 20:56:49 +00:00
parent 0c602b6de8
commit 4f501b788f

View file

@ -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 {