fix warnings
This commit is contained in:
parent
aea238e0e3
commit
6772b9f90b
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue