-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
These two functions have unclosed return expression.
cpython/Include/cpython/pyatomic_std.h
Lines 913 to 927 in 2982bdb
| static inline uint32_t | |
| _Py_atomic_load_uint32_acquire(const uint32_t *obj) | |
| { | |
| _Py_USING_STD; | |
| return atomic_load_explicit((const _Atomic(uint32_t)*)obj, | |
| } | |
| static inline Py_ssize_t | |
| _Py_atomic_load_ssize_acquire(const Py_ssize_t *obj) | |
| { | |
| _Py_USING_STD; | |
| return atomic_load_explicit((const _Atomic(Py_ssize_t)*)obj, | |
| } | |
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs
Metadata
Metadata
Assignees
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error