Browse Source

fixed warnings in daniele functions

Former-commit-id: 26403e7128ae6d4dbc8cff29f03aa4fb50be4df7
jalec 13 years ago
parent
commit
4d8b3576f5
2 changed files with 2 additions and 2 deletions
  1. 1 1
      include/igl/is_manifold.cpp
  2. 1 1
      include/igl/tt.cpp

+ 1 - 1
include/igl/is_manifold.cpp

@@ -3,7 +3,7 @@
 #include <algorithm>
 
 template <typename DerivedV, typename DerivedF>
-IGL_INLINE bool igl::is_manifold(const Eigen::PlainObjectBase<DerivedV>& V,
+IGL_INLINE bool igl::is_manifold(const Eigen::PlainObjectBase<DerivedV>& /*V*/,
                                  const Eigen::PlainObjectBase<DerivedF>& F)
   {
     std::vector<std::vector<int> > TTT;

+ 1 - 1
include/igl/tt.cpp

@@ -4,7 +4,7 @@
 #include <algorithm>
 
 template <typename DerivedV, typename DerivedF>
-IGL_INLINE void igl::tt_preprocess(const Eigen::PlainObjectBase<DerivedV>& V,
+IGL_INLINE void igl::tt_preprocess(const Eigen::PlainObjectBase<DerivedV>& /*V*/,
                                    const Eigen::PlainObjectBase<DerivedF>& F,
                                    std::vector<std::vector<int> >& TTT)
 {