diff options
author | Christoph GrĂ¼ninger <foss@grueninger.de> | 2016-02-03 22:22:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-04 15:57:02 (GMT) |
commit | 58a4a7713233bebb5feca5985d0850d170703122 (patch) | |
tree | f4390f0954b122a50b844eb9c2baad6410a6071c /Source/cmComputeLinkDepends.cxx | |
parent | a5a5a6857241c21d306661d723b749839f4c6e1a (diff) | |
download | CMake-58a4a7713233bebb5feca5985d0850d170703122.zip CMake-58a4a7713233bebb5feca5985d0850d170703122.tar.gz CMake-58a4a7713233bebb5feca5985d0850d170703122.tar.bz2 |
Make cmLinkInterface:: and cmGeneratorTarget::Multiplicity unsigned ints
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 13098ad..2796fdf 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -931,7 +931,7 @@ cmComputeLinkDepends::MakePendingComponent(unsigned int component) //---------------------------------------------------------------------------- int cmComputeLinkDepends::ComputeComponentCount(NodeList const& nl) { - int count = 2; + unsigned int count = 2; for(NodeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni) { if(cmGeneratorTarget const* target = this->EntryList[*ni].Target) |