From f08a01fb267333f50d148484ea36dc254bcc1ffb Mon Sep 17 00:00:00 2001 From: PKEuS Date: Sun, 31 Mar 2013 01:11:34 -0700 Subject: [PATCH] Fixed MSVC warning in threadexecutor.h when compiling as x64 --- cli/threadexecutor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/threadexecutor.h b/cli/threadexecutor.h index 4dff13b7f..79e9ee625 100644 --- a/cli/threadexecutor.h +++ b/cli/threadexecutor.h @@ -102,10 +102,10 @@ private: std::map _fileContents; std::map::const_iterator _itNextFile; - unsigned int _processedFiles; - unsigned int _totalFiles; - size_t _processedSize; - size_t _totalFileSize; + std::size_t _processedFiles; + std::size_t _totalFiles; + std::size_t _processedSize; + std::size_t _totalFileSize; CRITICAL_SECTION _fileSync; std::list _errorList;