From 4e63839b9716bf75549b5aff5b92d3f2ef21dbd1 Mon Sep 17 00:00:00 2001 From: skoch Date: Tue, 5 Dec 2017 18:16:53 +0100 Subject: [PATCH] Fix inconsistent imports Former-commit-id: 45417a4a8511a4df4689fd654c48c1dd7b48ca07 --- python/py_igl.cpp | 2 +- python/python_shared.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python/py_igl.cpp b/python/py_igl.cpp index 3070b3817..5eaf9a977 100644 --- a/python/py_igl.cpp +++ b/python/py_igl.cpp @@ -8,7 +8,7 @@ #include #include "python_shared.h" -#include "modules/py_typedefs.h" + #include #include diff --git a/python/python_shared.h b/python/python_shared.h index 2c3ac19b3..5017634b3 100644 --- a/python/python_shared.h +++ b/python/python_shared.h @@ -13,10 +13,10 @@ #include #include #include - -#include "py_doc.h" - #include +#include "py_doc.h" +#include "modules/py_typedefs.h" + template void assert_is_VectorX(const std::string name, const Eigen::PlainObjectBase& v)