From 83087766bf07d93578023a718ed74eb1eba00ee6 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 12 Mar 2015 12:52:21 +0100 Subject: [PATCH] fix, cesym 64bit build --- cesyms/cesyms.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cesyms/cesyms.d b/cesyms/cesyms.d index b862c1df..4c05e9fd 100644 --- a/cesyms/cesyms.d +++ b/cesyms/cesyms.d @@ -162,8 +162,8 @@ class SymbolListBuilder : ASTVisitor static void astError(string fname, size_t line, size_t col, string msg, bool isErr) { Symbol * newSym = construct!Symbol; - newSym.col = col; - newSym.line = line; + newSym.col = cast(int) col; + newSym.line = cast(int) line; newSym.name = msg; isErr ? newSym.type = SymbolType._error : newSym.type = SymbolType._warning; illFormed ~= newSym;