Skip to content
Snippets Groups Projects
Verified Commit c5a5926c authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: improve indetation

parent 21fd85c1
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "eigenpy/fwd.hpp" #include "eigenpy/fwd.hpp"
#include "eigenpy/deprecated.hh" #include "eigenpy/deprecated.hh"
#include "eigenpy/eigenpy_export.h" #include "eigenpy/eigenpy_export.h"
#if EIGEN_VERSION_AT_LEAST(3,2,0) #if EIGEN_VERSION_AT_LEAST(3,2,0)
#include "eigenpy/ref.hpp" #include "eigenpy/ref.hpp"
...@@ -16,12 +17,12 @@ ...@@ -16,12 +17,12 @@
::eigenpy::enableEigenPySpecific<TYPE>(); \ ::eigenpy::enableEigenPySpecific<TYPE>(); \
::eigenpy::enableEigenPySpecific< eigenpy::Ref<TYPE> >(); ::eigenpy::enableEigenPySpecific< eigenpy::Ref<TYPE> >();
#else #else // if EIGEN_VERSION_AT_LEAST(3,2,0)
#define ENABLE_SPECIFIC_MATRIX_TYPE(TYPE) \ #define ENABLE_SPECIFIC_MATRIX_TYPE(TYPE) \
::eigenpy::enableEigenPySpecific<TYPE>(); ::eigenpy::enableEigenPySpecific<TYPE>();
#endif #endif // if EIGEN_VERSION_AT_LEAST(3,2,0)
namespace eigenpy namespace eigenpy
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment