mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-9566: Fix compiler warnings in gcmodule.c (GH-11010)
Change PyDTrace_GC_DONE() argument type from int to Py_ssize_t.
This commit is contained in:
parent
bb9593af0a
commit
edad38e3e0
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ static inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2) {
|
|||
static inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2) {}
|
||||
static inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2) {}
|
||||
static inline void PyDTrace_GC_START(int arg0) {}
|
||||
static inline void PyDTrace_GC_DONE(int arg0) {}
|
||||
static inline void PyDTrace_GC_DONE(Py_ssize_t arg0) {}
|
||||
static inline void PyDTrace_INSTANCE_NEW_START(int arg0) {}
|
||||
static inline void PyDTrace_INSTANCE_NEW_DONE(int arg0) {}
|
||||
static inline void PyDTrace_INSTANCE_DELETE_START(int arg0) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue