mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
FIX: Remove assert since it was breaking IRIX builds.
This commit is contained in:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user