Browse Source

Explicit template instantiation of std::vector<std::vector<int>> for boundary_loop

ShuangLiu 6 years ago
parent
commit
96bdfb64ba
1 changed files with 1 additions and 0 deletions
  1. 1 0
      include/igl/boundary_loop.cpp

+ 1 - 0
include/igl/boundary_loop.cpp

@@ -150,4 +150,5 @@ IGL_INLINE void igl::boundary_loop(
 #ifdef IGL_STATIC_LIBRARY
 // Explicit template instantiation
 template void igl::boundary_loop<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
+template void igl::boundary_loop<Eigen::Matrix<int, -1, -1, 0, -1, -1>, int>(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >&);
 #endif