Cleanup: use nodiscard attribute for functions in the Python API
In most (cases functions returning a PyObject pointer requires it to be used by the caller, declare functions in the Python API with the `nodiscard` attribute.
This commit is contained in:
@@ -26,30 +26,28 @@ struct VectorObject {
|
||||
|
||||
/* Prototypes. */
|
||||
|
||||
PyObject *Vector_CreatePyObject(const float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT;
|
||||
[[nodiscard]] PyObject *Vector_CreatePyObject(const float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type);
|
||||
/**
|
||||
* Create a vector that wraps existing memory.
|
||||
*
|
||||
* \param vec: Use this vector in-place.
|
||||
*/
|
||||
PyObject *Vector_CreatePyObject_wrap(float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT
|
||||
ATTR_NONNULL(1);
|
||||
[[nodiscard]] PyObject *Vector_CreatePyObject_wrap(float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type) ATTR_NONNULL(1);
|
||||
/**
|
||||
* Create a vector where the value is defined by registered callbacks,
|
||||
* see: #Mathutils_RegisterCallback
|
||||
*/
|
||||
PyObject *Vector_CreatePyObject_cb(PyObject *cb_user,
|
||||
int vec_num,
|
||||
unsigned char cb_type,
|
||||
unsigned char cb_subtype) ATTR_WARN_UNUSED_RESULT;
|
||||
[[nodiscard]] PyObject *Vector_CreatePyObject_cb(PyObject *cb_user,
|
||||
int vec_num,
|
||||
unsigned char cb_type,
|
||||
unsigned char cb_subtype);
|
||||
/**
|
||||
* \param vec: Initialized vector value to use in-place, allocated with #PyMem_Malloc
|
||||
*/
|
||||
PyObject *Vector_CreatePyObject_alloc(float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type) ATTR_WARN_UNUSED_RESULT
|
||||
ATTR_NONNULL(1);
|
||||
[[nodiscard]] PyObject *Vector_CreatePyObject_alloc(float *vec,
|
||||
int vec_num,
|
||||
PyTypeObject *base_type) ATTR_NONNULL(1);
|
||||
|
||||
Reference in New Issue
Block a user