mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-117139: Fix missing semicolon (GH-118573)
This commit is contained in:
parent
5f547585fa
commit
978fba58ae
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ _Py_untag_stack_steal(PyObject **dst, const _PyStackRef *src, size_t length)
|
|||
|
||||
#define PyStackRef_XSETREF(dst, src) \
|
||||
do { \
|
||||
_PyStackRef *_tmp_dst_ptr = &(dst) \
|
||||
_PyStackRef *_tmp_dst_ptr = &(dst); \
|
||||
_PyStackRef _tmp_old_dst = (*_tmp_dst_ptr); \
|
||||
*_tmp_dst_ptr = (src); \
|
||||
PyStackRef_XDECREF(_tmp_old_dst); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue