File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Fixed
10
+ - Fix function signature on Windows ([ #494 ] ( https://github.com/stack-of-tasks/eigenpy/pull/494 ) )
11
+
9
12
## [ 3.8.1] - 2024-08-25
10
13
11
14
### Fixed
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2020-2022 INRIA
2
+ * Copyright 2020-2024 INRIA
3
3
*/
4
4
5
5
#ifndef __eigenpy_numpy_hpp__
@@ -215,7 +215,7 @@ EIGENPY_DLLAPI PyArray_Descr* call_PyArray_DescrFromType(int typenum);
215
215
216
216
EIGENPY_DLLAPI void call_PyArray_InitArrFuncs (PyArray_ArrFuncs* funcs);
217
217
218
- EIGENPY_DLLAPI int call_PyArray_RegisterDataType (PyArray_Descr * dtype);
218
+ EIGENPY_DLLAPI int call_PyArray_RegisterDataType (PyArray_DescrProto * dtype);
219
219
220
220
EIGENPY_DLLAPI int call_PyArray_RegisterCanCast (PyArray_Descr* descr,
221
221
int totype,
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2020-2022 INRIA
2
+ * Copyright 2020-2024 INRIA
3
3
*/
4
4
5
5
#include " eigenpy/numpy.hpp"
You can’t perform that action at this time.
0 commit comments