summaryrefslogtreecommitdiffstats
path: root/Include/objimpl.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-10-29 13:49:24 (GMT)
committerGitHub <noreply@github.com>2018-10-29 13:49:24 (GMT)
commit542497aa9f71c664768c3d5b7398c03679d3a7e1 (patch)
treed95ea5c4245dc98163391d1f64d25d3158e3119b /Include/objimpl.h
parent2aaf0c12041bcaadd7f2cc5a54450eefd7a6ff12 (diff)
downloadcpython-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.h4
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);