diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-10-29 13:49:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-29 13:49:24 (GMT) |
commit | 542497aa9f71c664768c3d5b7398c03679d3a7e1 (patch) | |
tree | d95ea5c4245dc98163391d1f64d25d3158e3119b /Include/objimpl.h | |
parent | 2aaf0c12041bcaadd7f2cc5a54450eefd7a6ff12 (diff) | |
download | cpython-542497aa9f71c664768c3d5b7398c03679d3a7e1.zip cpython-542497aa9f71c664768c3d5b7398c03679d3a7e1.tar.gz cpython-542497aa9f71c664768c3d5b7398c03679d3a7e1.tar.bz2 |
bpo-35059: Remove Py_STATIC_INLINE() macro (GH-10216)
"static inline" should be used directly. Forcing the compiler to
inline is not recommended.
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r-- | Include/objimpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index 6ce6455..b3d3a81 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -144,7 +144,7 @@ PyAPI_FUNC(PyVarObject *) _PyObject_NewVar(PyTypeObject *, Py_ssize_t); See also pymem.h. These inline functions expect non-NULL object pointers. */ -Py_STATIC_INLINE(PyObject*) +static inline PyObject* PyObject_INIT(PyObject *op, PyTypeObject *typeobj) { assert(op != NULL); @@ -153,7 +153,7 @@ PyObject_INIT(PyObject *op, PyTypeObject *typeobj) return op; } -Py_STATIC_INLINE(PyVarObject*) +static inline PyVarObject* PyObject_INIT_VAR(PyVarObject *op, PyTypeObject *typeobj, Py_ssize_t size) { assert(op != NULL); |