# IFCLoader: < predicate to order representations by use for us was accidentally a total ordering.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1114 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/5/head
aramis_acg 2012-01-15 13:51:34 +00:00
parent 81ef6af2df
commit 000ef3de02
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ struct RateRepresentationPredicate {
} }
bool operator() (const IfcRepresentation* a, const IfcRepresentation* b) const { bool operator() (const IfcRepresentation* a, const IfcRepresentation* b) const {
return Rate(a) <= Rate(b); return Rate(a) < Rate(b);
} }
}; };