Selaa lähdekoodia

Merge pull request #654 from skoch9/fixes

Fix inconsistent imports

Former-commit-id: 48236274ab3c2ae30f02f74f5459a53cd6baa9f4
Daniele Panozzo 7 vuotta sitten
vanhempi
commit
a1af32d285
2 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 1 1
      python/py_igl.cpp
  2. 2 2
      python/python_shared.h

+ 1 - 1
python/py_igl.cpp

@@ -8,7 +8,7 @@
 #include <Eigen/Dense>
 #include <Eigen/Dense>
 
 
 #include "python_shared.h"
 #include "python_shared.h"
-#include "modules/py_typedefs.h"
+
 
 
 #include <igl/AABB.h>
 #include <igl/AABB.h>
 #include <igl/ARAPEnergyType.h>
 #include <igl/ARAPEnergyType.h>

+ 2 - 2
python/python_shared.h

@@ -13,10 +13,10 @@
 #include <pybind11/numpy.h>
 #include <pybind11/numpy.h>
 #include <pybind11/stl.h>
 #include <pybind11/stl.h>
 #include <pybind11/functional.h>
 #include <pybind11/functional.h>
-
+#include <Eigen/Dense>
 #include "py_doc.h"
 #include "py_doc.h"
+#include "modules/py_typedefs.h"
 
 
-#include <Eigen/Dense>
 
 
 template<typename Scalar>
 template<typename Scalar>
 void assert_is_VectorX(const std::string name, const Eigen::PlainObjectBase<Scalar>& v)
 void assert_is_VectorX(const std::string name, const Eigen::PlainObjectBase<Scalar>& v)