Skip to content

Commit ced375f

Browse files
Remove incorrect and unused _Py_atomic_store_uint_release() method
1 parent 9d547da commit ced375f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Include/cpython/pyatomic_std.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -948,14 +948,6 @@ _Py_atomic_store_ushort_relaxed(unsigned short *obj, unsigned short value)
948948
memory_order_relaxed);
949949
}
950950

951-
static inline void
952-
_Py_atomic_store_uint_release(unsigned int *obj, unsigned int value)
953-
{
954-
_Py_USING_STD;
955-
atomic_store_explicit((_Atomic(unsigned int)*)obj, value,
956-
memory_order_relaxed);
957-
}
958-
959951
static inline void
960952
_Py_atomic_store_long_relaxed(long *obj, long value)
961953
{

0 commit comments

Comments
 (0)