diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
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 { |