Browse Source

Precision fix in tinyxml2

Former-commit-id: 008acef7dd37ebcbd6bd68152b4e319e1d1b3653
schuellc 11 years ago
parent
commit
adaa905fc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/igl/sort.cpp

+ 1 - 1
include/igl/sort.cpp

@@ -101,7 +101,7 @@ IGL_INLINE void igl::sort_new(
   // loop over columns (or rows)
   for(int i = 0; i<num_outer;i++)
   {
-    VectorXi ix;
+    Eigen::VectorXi ix;
     colon(0,num_inner-1,ix);
     // Sort the index map, using unsorted for comparison
     if(dim == 1)