From 16b1f05fc24ecc070f040f2fd94fead666e47ade Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Fri, 4 May 2007 09:50:39 -0400 Subject: [PATCH] COMP: fix warning on VS8: conversion unsigned int -> size_t Alex --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index e8a6eb999..c1a65d7e9 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2756,7 +2756,7 @@ std::vector *cmMakefile::GetTests() std::string cmMakefile::GetListFileStack() { cmOStringStream tmp; - unsigned int depth = this->ListFileStack.size(); + size_t depth = this->ListFileStack.size(); std::deque::iterator it = this->ListFileStack.end(); do {