FIX: Remove assert since it was breaking IRIX builds.

This commit is contained in:
Amitha Perera 2002-05-11 22:28:59 -04:00
parent de44f1faac
commit 1c9981eb1d
1 changed files with 0 additions and 2 deletions

View File

@ -19,7 +19,6 @@
#include <map>
#include <set>
#include <cassert>
void cmTarget::GenerateSourceFilesFromSourceLists( cmMakefile &mf)
@ -75,7 +74,6 @@ void cmTarget::MergeLinkLibraries( cmMakefile& mf,
{
// Only add on libraries we haven't added on before.
// Assumption: the global link libraries could only grow, never shrink
assert( libs.size() >= m_PrevLinkedLibraries.size() );
LinkLibraries::const_iterator i = libs.begin();
i += m_PrevLinkedLibraries.size();
for( ; i != libs.end(); ++i )