Fix implicit size_t -> int MSVC warnings

Change-Id: I2f224c942c52a172788e917641420e8380c54859
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Orgad Shaneh
2020-11-11 12:39:45 +02:00
committed by Orgad Shaneh
parent 6fc3f65ce0
commit 9c6df2f832
2 changed files with 3 additions and 3 deletions

View File

@@ -76,7 +76,7 @@ public:
int filesAnalyzed() const { return m_filesAnalyzed.size(); }
int filesNotAnalyzed() const { return m_filesNotAnalyzed.size(); }
int totalFilesToAnalyze() const { return m_fileInfos.size(); }
int totalFilesToAnalyze() const { return int(m_fileInfos.size()); }
signals:
void buildFailed();