From 000ef3de02a97790cbc298a528a37a9210434eeb Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sun, 15 Jan 2012 13:51:34 +0000 Subject: [PATCH] # 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 --- code/IFCLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/IFCLoader.cpp b/code/IFCLoader.cpp index fb6465119..4af143ef6 100644 --- a/code/IFCLoader.cpp +++ b/code/IFCLoader.cpp @@ -468,7 +468,7 @@ struct RateRepresentationPredicate { } bool operator() (const IfcRepresentation* a, const IfcRepresentation* b) const { - return Rate(a) <= Rate(b); + return Rate(a) < Rate(b); } };