Fix appending string to dchar[]

This commit is contained in:
Andrey Penechko 2015-02-17 03:01:21 +02:00
parent 6dd80be82d
commit 0cf500d6b3
1 changed files with 3 additions and 3 deletions

View File

@ -297,7 +297,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
res ~= ch;
x = newX;
}
res ~= "//";
res ~= "//"d;
x += 2;
} else {
res ~= ch;
@ -306,7 +306,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
} else {
if (!commented && x == commentX) {
commented = true;
res ~= "//";
res ~= "//"d;
res ~= ch;
x += 3;
} else {
@ -318,7 +318,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
if (!commented) {
for (; x < commentX; x++)
res ~= ' ';
res ~= "//";
res ~= "//"d;
}
return cast(dstring)res;
}