From 3fe6eebf20e3ba459705e1a548fbab134409efad Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Apr 2019 18:50:53 +0200 Subject: Cleanup: line wrapping caused by comments --- intern/atomic/atomic_ops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern') diff --git a/intern/atomic/atomic_ops.h b/intern/atomic/atomic_ops.h index 07b7ce38b94..9d4ec67ba97 100644 --- a/intern/atomic/atomic_ops.h +++ b/intern/atomic/atomic_ops.h @@ -113,8 +113,8 @@ ATOMIC_INLINE size_t atomic_sub_and_fetch_z(size_t *p, size_t x); ATOMIC_INLINE size_t atomic_fetch_and_add_z(size_t *p, size_t x); ATOMIC_INLINE size_t atomic_fetch_and_sub_z(size_t *p, size_t x); ATOMIC_INLINE size_t atomic_cas_z(size_t *v, size_t old, size_t _new); -ATOMIC_INLINE size_t -atomic_fetch_and_update_max_z(size_t *p, size_t x); /* Uses CAS loop, see warning below. */ +/* Uses CAS loop, see warning below. */ +ATOMIC_INLINE size_t atomic_fetch_and_update_max_z(size_t *p, size_t x); ATOMIC_INLINE unsigned int atomic_add_and_fetch_u(unsigned int *p, unsigned int x); ATOMIC_INLINE unsigned int atomic_sub_and_fetch_u(unsigned int *p, unsigned int x); -- cgit v1.2.3