diff --git a/src/fwd.hpp b/src/fwd.hpp index ab9cf717f2c6d2a5f3f87f5c422c6c0fcd88d4ba..d5d1f2e66ab8acb55b36771a1c0c3b989fced430 100644 --- a/src/fwd.hpp +++ b/src/fwd.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2014-2017, Nicolas Mansard and Justin Carpentier, LAAS-CNRS + * Copyright 2014-2018, Nicolas Mansard and Justin Carpentier, LAAS-CNRS * * This file is part of eigenpy. * eigenpy is free software: you can redistribute it and/or @@ -20,8 +20,17 @@ #include <boost/python.hpp> #include <Eigen/Core> +#include <numpy/numpyconfig.h> #ifdef NPY_1_8_API_VERSION #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #endif +#include <numpy/noprefix.h> + +#ifdef NPY_ALIGNED +#define EIGENPY_DEFAULT_ALIGNMENT_VALUE Eigen::Aligned16 +#else +#define EIGENPY_DEFAULT_ALIGNMENT_VALUE Eigen::Unaligned +#endif + #endif // ifndef __eigenpy_fwd_hpp__