From c056226a0545e36a7bcc4bdf9262b8ff98fa6852 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Tue, 3 Aug 2021 16:12:11 +0200 Subject: [PATCH] core: fix signature --- include/eigenpy/ufunc.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/eigenpy/ufunc.hpp b/include/eigenpy/ufunc.hpp index 1dbe196..45742ba 100644 --- a/include/eigenpy/ufunc.hpp +++ b/include/eigenpy/ufunc.hpp @@ -67,8 +67,8 @@ namespace eigenpy } template<typename T> - void gufunc_matrix_multiply(char **args, npy_intp const *dimensions, - npy_intp const *steps, void *NPY_UNUSED(func)) + void gufunc_matrix_multiply(char **args, npy_intp EIGENPY_NPY_CONST_UFUNC_ARG *dimensions, + npy_intp EIGENPY_NPY_CONST_UFUNC_ARG *steps, void *NPY_UNUSED(func)) { /* outer dimensions counter */ npy_intp N_; -- GitLab