diff options
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index a99c5ef..1695dac 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1349,7 +1349,7 @@ void cmSystemTools::GlobDirs(const char *fullPath, std::vector<std::string>& files) { std::string path = fullPath; - int pos = path.find("/*"); + std::string::size_type pos = path.find("/*"); if(pos == std::string::npos) { files.push_back(fullPath); |