Browse Source

indentation

Former-commit-id: 875ccd4a73c03c6385468d8de405b04d6c0bc6e3
Alec Jacobson 10 năm trước cách đây
mục cha
commit
d11d3802e1
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  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);
 
 }