diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-22 18:38:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 18:38:38 +0100 |
commit | 3bb183d7fb83ad6a84ec13dea90f95d67be35c69 (patch) | |
tree | 452e2804dc376a4bc6f4c80e660278dd9fbea1a1 /Include/Python-ast.h | |
parent | 2cf5d32fd9e61488e8b0be55a2e92a752ba8b06b (diff) | |
download | cpython-git-3bb183d7fb83ad6a84ec13dea90f95d67be35c69.tar.gz |
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
Partially revert commit 5f2df88b63e50d23914e97ec778861a52abdeaad:
add "#undef Yield" to .c files after including Python-ast.h.
Fix the warning:
winbase.h(102): warning C4005: 'Yield': macro redefinition
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r-- | Include/Python-ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index 1b7d9b10b1..1a2b829781 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -8,7 +8,7 @@ extern "C" { #include "asdl.h" -#undef Yield /* undefine macro conflicting with winbase.h */ +#undef Yield /* undefine macro conflicting with <winbase.h> */ typedef struct _mod *mod_ty; |