mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-28 01:51:02 -06:00
COMP: fix mac warning
This commit is contained in:
@@ -1017,7 +1017,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
|
||||
}
|
||||
cmsys::Directory dir;
|
||||
dir.Load(dirName.c_str());
|
||||
size_t fileNum = dir.GetNumberOfFiles();
|
||||
int fileNum = static_cast<int>(dir.GetNumberOfFiles());
|
||||
// read the count
|
||||
fName = dirName;
|
||||
fName += "/count.txt";
|
||||
|
||||
Reference in New Issue
Block a user