浏览代码

# 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
aramis_acg 13 年之前
父节点
当前提交
000ef3de02
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/IFCLoader.cpp

+ 1 - 1
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);
 	}
 };