Skip to content

Commit 94b304e

Browse files
committed
Header: fix dss_obj_float64_int32_func_t
1 parent 00f04ee commit 94b304e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- API/YMatrix: check for valid circuit in a few more functions.
2323
- API/Circuit: adjust `SetActiveElement` to be more conformant with the official version, i.e., returns -1 for non-circuit elements.
2424
- Alt/CircuitElement: Fix error message.
25+
- Header/Alt: fix `dss_obj_float64_int32_func_t` (returns `double`, not `int32_t`).
2526

2627
## Version 0.14.2 (2024-02-26)
2728

include/dss_capi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ extern "C" {
414414
*/
415415
typedef double (*dss_obj_float64_func_t)(void* obj);
416416
typedef int32_t (*dss_obj_int32_func_t)(void* obj);
417-
typedef int32_t (*dss_obj_float64_int32_func_t)(void* obj, int32_t val);
417+
typedef double (*dss_obj_float64_int32_func_t)(void* obj, int32_t val);
418418
typedef double (*dss_ctx_bus_float64_func_t)(const void* ctx, void* obj);
419419
typedef int32_t (*dss_ctx_bus_int32_func_t)(const void* ctx, void* obj);
420420

0 commit comments

Comments
 (0)