summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-04 09:50:39 -0400
committerAlexander Neundorf <neundorf@kde.org>2007-05-04 09:50:39 -0400
commit16b1f05fc24ecc070f040f2fd94fead666e47ade (patch)
tree5756253a27c6e714d498d26a09463b695c030e97 /Source
parent41a053955702c300be69406735cc3ccb9fb1f0d6 (diff)
downloadcmake-16b1f05fc24ecc070f040f2fd94fead666e47ade.tar.gz
COMP: fix warning on VS8: conversion unsigned int -> size_t
Alex
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index e8a6eb9999..c1a65d7e9f 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -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
{