fix clang build

This commit is contained in:
Russell Sears 2020-05-06 16:22:13 -07:00
parent 5c17d5e054
commit 945daf980d
1 changed files with 1 additions and 1 deletions

View File

@ -874,7 +874,7 @@ void IndexedSet<T,Metric>::erase( typename IndexedSet<T,Metric>::iterator begin,
// Removes all nodes in the set between first and last, inclusive.
// toFree is extended with the roots of completely removed subtrees.
ASSERT(!end.i || (begin.i && *begin <= *end));
ASSERT(!end.i || (begin.i && (::compare(*begin, *end) <= 0)));
if(begin == end)
return;