fix warnings

This commit is contained in:
Ken Martin 2003-01-10 11:07:29 -05:00
parent aea238e0e3
commit 6772b9f90b
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ void cmGlobalGenerator::EnableLanguage(const char* lang,
static char envCC[5000]; static char envCC[5000];
std::string env = "CC=${CMAKE_C_COMPILER}"; std::string env = "CC=${CMAKE_C_COMPILER}";
mf->ExpandVariablesInString(env); mf->ExpandVariablesInString(env);
unsigned int size = env.size(); unsigned int size = static_cast<unsigned int>(env.size());
if(size > 4999) if(size > 4999)
{ {
size = 4999; size = 4999;
@ -148,7 +148,7 @@ void cmGlobalGenerator::EnableLanguage(const char* lang,
{ {
std::string env = "CXX=${CMAKE_CXX_COMPILER}"; std::string env = "CXX=${CMAKE_CXX_COMPILER}";
mf->ExpandVariablesInString(env); mf->ExpandVariablesInString(env);
unsigned int size = env.size(); unsigned int size = static_cast<unsigned int>(env.size());
if(size > 4999) if(size > 4999)
{ {
size = 4999; size = 4999;