浏览代码

fix for mysterious assertion failure in MSVS 2010, from community member swx.

David Rose 15 年之前
父节点
当前提交
40b8521245
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      panda/src/egg/eggMesherStrip.cxx

+ 1 - 1
panda/src/egg/eggMesherStrip.cxx

@@ -359,7 +359,7 @@ cut_sheet(int first_row_id, int do_mate, const EggVertexPool *vertex_pool) {
       not_any = true;
 
       ei = _edges.begin();
-      while (ei != _edges.end() && not_any) {
+      while (not_any && ei != _edges.end()) {
         EggMesherEdge::Strips &strips = (*ei)->_strips;
         si = strips.begin();
         while (si != strips.end() && not_any) {