COMP: fix warning on VS8: conversion unsigned int -> size_t

Alex
This commit is contained in:
Alexander Neundorf 2007-05-04 09:50:39 -04:00
parent 41a0539557
commit 16b1f05fc2
1 changed files with 1 additions and 1 deletions

View File

@ -2756,7 +2756,7 @@ std::vector<cmTest*> *cmMakefile::GetTests()
std::string cmMakefile::GetListFileStack() std::string cmMakefile::GetListFileStack()
{ {
cmOStringStream tmp; cmOStringStream tmp;
unsigned int depth = this->ListFileStack.size(); size_t depth = this->ListFileStack.size();
std::deque<cmStdString>::iterator it = this->ListFileStack.end(); std::deque<cmStdString>::iterator it = this->ListFileStack.end();
do do
{ {