summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-04 13:50:39 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-04 13:50:39 (GMT)
commit16b1f05fc24ecc070f040f2fd94fead666e47ade (patch)
tree5756253a27c6e714d498d26a09463b695c030e97 /Source
parent41a053955702c300be69406735cc3ccb9fb1f0d6 (diff)
downloadCMake-16b1f05fc24ecc070f040f2fd94fead666e47ade.zip
CMake-16b1f05fc24ecc070f040f2fd94fead666e47ade.tar.gz
CMake-16b1f05fc24ecc070f040f2fd94fead666e47ade.tar.bz2
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 e8a6eb9..c1a65d7 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
{