COMP: fix warning on VS8: conversion unsigned int -> size_t
Alex
This commit is contained in:
parent
41a0539557
commit
16b1f05fc2
|
@ -2756,7 +2756,7 @@ std::vector<cmTest*> *cmMakefile::GetTests()
|
|||
std::string cmMakefile::GetListFileStack()
|
||||
{
|
||||
cmOStringStream tmp;
|
||||
unsigned int depth = this->ListFileStack.size();
|
||||
size_t depth = this->ListFileStack.size();
|
||||
std::deque<cmStdString>::iterator it = this->ListFileStack.end();
|
||||
do
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue