diff options
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/upcoming_changes/15355.c_api.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/15355.c_api.rst b/doc/release/upcoming_changes/15355.c_api.rst new file mode 100644 index 000000000..ffc1972cf --- /dev/null +++ b/doc/release/upcoming_changes/15355.c_api.rst @@ -0,0 +1,7 @@ +Const qualify UFunc inner loops
+-------------------------------
+``UFuncGenericFunction`` now expects pointers to const ``dimension`` and
+``strides`` as arguments. This means inner loops may no longer modify
+either ``dimension`` or ``strides``. This change leads to an
+``incompatible-pointer-types`` warning forcing users to either ignore
+the compiler warnings or to const qualify their own loop signatures.
|