]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-107249: Implement Py_UNUSED() for MSVC (#107250)
authorVictor Stinner <vstinner@python.org>
Tue, 25 Jul 2023 17:28:16 +0000 (19:28 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Jul 2023 17:28:16 +0000 (19:28 +0200)
commit6a43cce32b66e0f66992119dd82959069b6f324a
tree5dd7b804b5e8c874b8a7b64a7ac6f464e578131a
parentfabcbe9c12688eb9a902a5c89cb720ed373625c5
gh-107249: Implement Py_UNUSED() for MSVC (#107250)

Fix warnings C4100 in Py_UNUSED() when Python is built with "cl /W4".

Example with this function included by Python.h:

    static inline unsigned int
    PyUnicode_IS_READY(PyObject* Py_UNUSED(op))
    { return 1; }

Without this change, building a C program with "cl /W4" which just
includes Python.h emits the warning:

    Include\cpython/unicodeobject.h(199):
    warning C4100: '_unused_op': unreferenced formal parameter

This change fix this warning.
Include/pymacro.h
Misc/NEWS.d/next/C API/2023-07-25-17-23-08.gh-issue-107249.xqk2ke.rst [new file with mode: 0644]