summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-01-09 16:32:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-01-09 16:32:40 (GMT)
commitf36608b8edf6fcb5ef6386c35199702dfe7e3249 (patch)
tree3be194587bacecfaea4af85b99a6b80fe38c3aa3 /Source/cmGlobalGenerator.cxx
parent384523a3153d911853f8c7fffbc8c1b7bb9ca421 (diff)
downloadCMake-f36608b8edf6fcb5ef6386c35199702dfe7e3249.zip
CMake-f36608b8edf6fcb5ef6386c35199702dfe7e3249.tar.gz
CMake-f36608b8edf6fcb5ef6386c35199702dfe7e3249.tar.bz2
fix warning
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index a6c4500..0355256 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -36,7 +36,7 @@ cmGlobalGenerator::~cmGlobalGenerator()
{
env += m_CCEnvironment;
}
- unsigned int size = env.size();
+ std::string::size_type size = env.size();
if(size > 4999)
{
size = 4999;