fix warning

This commit is contained in:
Bill Hoffman 2003-01-09 11:32:40 -05:00
parent 384523a315
commit f36608b8ed
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ cmGlobalGenerator::~cmGlobalGenerator()
{ {
env += m_CCEnvironment; env += m_CCEnvironment;
} }
unsigned int size = env.size(); std::string::size_type size = env.size();
if(size > 4999) if(size > 4999)
{ {
size = 4999; size = 4999;