mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #22: Fix compilation warnings
This commit is contained in:
@ -244,7 +244,7 @@ void PDFDiff::performPageMatching(const std::vector<PDFDiffPageContext>& leftPre
|
||||
auto it = pageMatches.find(left.pageIndex);
|
||||
if (it != pageMatches.cend())
|
||||
{
|
||||
return it->second == right.pageIndex;
|
||||
return it->second == static_cast<size_t>(right.pageIndex);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user