Skip to content

Commit

Permalink
Fix build on Windows 64 bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Oct 31, 2021
1 parent 7eb030d commit b1b295f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spellcheck/platform/win/spellcheck_win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ void WindowsSpellChecker::chunkedCheckSpellingText(
while (i != textView.size()) {
const auto provisionalChunkSize = std::min(
kChunk,
textView.size() - i);
int(textView.size() - i));
const auto chunkSize = [&] {
const auto until = std::max(
0,
Expand Down

0 comments on commit b1b295f

Please sign in to comment.