Эх сурвалжийг харах

indentation

Former-commit-id: 875ccd4a73c03c6385468d8de405b04d6c0bc6e3
Alec Jacobson 10 жил өмнө
parent
commit
d11d3802e1
1 өөрчлөгдсөн 4 нэмэгдсэн , 4 устгасан
  1. 4 4
      include/igl/sort.h

+ 4 - 4
include/igl/sort.h

@@ -65,10 +65,10 @@ namespace igl
   //   index_map  an index map such that sorted[i] = unsorted[index_map[i]]
   template <class T>
   IGL_INLINE void sort(
-      const std::vector<T> &unsorted,
-      const bool ascending,
-      std::vector<T> &sorted,
-      std::vector<size_t> &index_map);
+    const std::vector<T> &unsorted,
+    const bool ascending,
+    std::vector<T> &sorted,
+    std::vector<size_t> &index_map);
 
 }