Fixed MSVC warning in threadexecutor.h when compiling as x64

This commit is contained in:
PKEuS 2013-03-31 01:11:34 -07:00
parent 5bff8d6b0b
commit f08a01fb26
1 changed files with 4 additions and 4 deletions

View File

@ -102,10 +102,10 @@ private:
std::map<std::string, std::string> _fileContents;
std::map<std::string, std::size_t>::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<std::string> _errorList;