mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-10 11:29:09 -05:00
COMP: fix warning on VS8: conversion unsigned int -> size_t
Alex
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user