fix x64 builds

This commit is contained in:
Vadim Lopatin 2015-01-22 16:26:16 +03:00
parent 38b99a9277
commit bf99a4ed95
2 changed files with 3 additions and 3 deletions

View File

@ -1439,7 +1439,7 @@ class Tokenizer
// fetch next line from source stream
protected bool nextLine() {
_prevLineLength = _lineText.length;
_prevLineLength = cast(int)_lineText.length;
_lineText = _lineStream.readLine();
if (!_lineText) {
if (_lineStream.errorCode != 0)

View File

@ -103,7 +103,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
long ms0 = currentTimeMillis();
_props = props;
changeStartLine = 0;
changeEndLine = lines.length;
changeEndLine = cast(int)lines.length;
_lines.init(lines[changeStartLine..$], _file, changeStartLine);
_tokenizer.init(_lines);
int tokenPos = 0;
@ -128,7 +128,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
// fill with category
for (int i = tokenLine; i <= newLine; i++) {
int start = i > tokenLine ? 0 : tokenPos;
int end = i < newLine ? lines[i].length : newPos;
int end = i < newLine ? cast(int)lines[i].length : newPos;
for (int j = start; j < end; j++)
_props[i][j] = category;
}