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:
commit
eebb20511f
3 changed files with 6 additions and 6 deletions
|
|
@ -106,7 +106,7 @@ public:
|
|||
}
|
||||
--ch;
|
||||
}
|
||||
loc[currentSource].column = currentChar - ch;
|
||||
loc[currentSource].column = (int)(currentChar - ch);
|
||||
}
|
||||
} else {
|
||||
do {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue