Skip to content

[3.11] GH-102711: Fix warnings found by clang (GH-102712) - #103075

Merged
ambv merged 1 commit into
python:3.11from
miss-islington:backport-7703def-3.11
Mar 28, 2023
Merged

[3.11] GH-102711: Fix warnings found by clang (GH-102712)#103075
ambv merged 1 commit into
python:3.11from
miss-islington:backport-7703def-3.11

Conversation

@miss-islington

@miss-islingtonmiss-islington commented Mar 28, 2023

Copy link
Copy Markdown
Contributor

There are some warnings if build python via clang:

Parser/pegen.c:812:31: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
_PyPegen_clear_memo_statistics()
^
void

Parser/pegen.c:820:29: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
_PyPegen_get_memo_statistics()
^
void

Fix it to make clang happy.

(cherry picked from commit 7703def)

Co-authored-by: Chenxi Mao chenxi.mao@suse.com
Signed-off-by: Chenxi Mao chenxi.mao@suse.com

There are some warnings if build python via clang:
Parser/pegen.c:812:31: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
_PyPegen_clear_memo_statistics()
^
void
Parser/pegen.c:820:29: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
_PyPegen_get_memo_statistics()
^
void
Fix it to make clang happy.
(cherry picked from commit 7703def)
Co-authored-by: Chenxi Mao <chenxi.mao@suse.com>
Signed-off-by: Chenxi Mao <chenxi.mao@suse.com>
@ambv
ambv merged commit abd6e97 into python:3.11Mar 28, 2023
@miss-islington
miss-islington deleted the backport-7703def-3.11 branch March 28, 2023 09:27
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@miss-islington@ambv@bedevere-bot