Merge pull request #11 from baldurk/size-t-int-warning-fixes

Fix warnings compiling on x64 with size_t to int casts
This commit is contained in:
John Kessenich 2015-07-14 12:25:55 -06:00
commit eebb20511f
3 changed files with 6 additions and 6 deletions

View file

@ -106,7 +106,7 @@ public:
}
--ch;
}
loc[currentSource].column = currentChar - ch;
loc[currentSource].column = (int)(currentChar - ch);
}
} else {
do {