From db7a807ef26de75abb75eec7834a95b9a9b98e5d Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 6 Sep 2025 12:24:31 +0200 Subject: libgomp: Use consistent formatting in I've noticed the new C++ part of omp.h uses libstdc++ coding conventions, while the rest of the header (and libgomp) is formatted using the normal gcc coding conventions like gcc/. This patch makes it consistent. 2025-09-06 Jakub Jelinek * omp.h.in: Fix up formatting of __cplusplus >= 201103L guarded code from libstc++ style to GCC/libgomp style. --- libgomp/omp.h.in | 83 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 42 insertions(+), 41 deletions(-) diff --git a/libgomp/omp.h.in b/libgomp/omp.h.in index 4f2bc46..60cb2b2 100644 --- a/libgomp/omp.h.in +++ b/libgomp/omp.h.in @@ -449,104 +449,104 @@ namespace allocator namespace __detail { -template +template struct __allocator_templ { using value_type = __T; - using pointer = __T*; - using const_pointer = const __T*; + using pointer = __T *; + using const_pointer = const __T *; using size_type = __SIZE_TYPE__; using difference_type = __PTRDIFF_TYPE__; - __T* + __T * allocate (size_type __n) { - if (__SIZE_MAX__ / sizeof(__T) < __n) + if (__SIZE_MAX__ / sizeof (__T) < __n) std::__throw_bad_array_new_length (); void *__p = omp_aligned_alloc (alignof(__T), __n * sizeof(__T), __Handle); if (!__p) std::__throw_bad_alloc (); - return static_cast<__T*>(__p); + return static_cast <__T *> (__p); } void deallocate (__T *__p, size_type) __GOMP_NOTHROW { - omp_free (static_cast(__p), __Handle); + omp_free (static_cast (__p), __Handle); } }; -template +template constexpr bool -operator== (const __allocator_templ<__T, __Handle>&, - const __allocator_templ<__U, __Handle>&) __GOMP_NOTHROW +operator== (const __allocator_templ <__T, __Handle> &, + const __allocator_templ <__U, __Handle> &) __GOMP_NOTHROW { return true; } -template +template constexpr bool -operator== (const __allocator_templ<__T, __Handle>&, - const __allocator_templ<__U, __UHandle>&) __GOMP_NOTHROW +operator== (const __allocator_templ <__T, __Handle> &, + const __allocator_templ <__U, __UHandle> &) __GOMP_NOTHROW { return false; } -template +template constexpr bool -operator!= (const __allocator_templ<__T, __Handle>&, - const __allocator_templ<__U, __Handle>&) __GOMP_NOTHROW +operator!= (const __allocator_templ <__T, __Handle> &, + const __allocator_templ <__U, __Handle> &) __GOMP_NOTHROW { return false; } -template +template constexpr bool -operator!= (const __allocator_templ<__T, __Handle>&, - const __allocator_templ<__U, __UHandle>&) __GOMP_NOTHROW +operator!= (const __allocator_templ <__T, __Handle> &, + const __allocator_templ <__U, __UHandle> &) __GOMP_NOTHROW { return true; } } /* namespace __detail */ -template +template struct null_allocator - : __detail::__allocator_templ<__T, omp_null_allocator> {}; + : __detail::__allocator_templ <__T, omp_null_allocator> {}; -template +template struct default_mem - : __detail::__allocator_templ<__T, omp_default_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_default_mem_alloc> {}; -template +template struct large_cap_mem - : __detail::__allocator_templ<__T, omp_large_cap_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_large_cap_mem_alloc> {}; -template +template struct const_mem - : __detail::__allocator_templ<__T, omp_const_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_const_mem_alloc> {}; -template +template struct high_bw_mem - : __detail::__allocator_templ<__T, omp_high_bw_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_high_bw_mem_alloc> {}; -template +template struct low_lat_mem - : __detail::__allocator_templ<__T, omp_low_lat_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_low_lat_mem_alloc> {}; -template +template struct cgroup_mem - : __detail::__allocator_templ<__T, omp_cgroup_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_cgroup_mem_alloc> {}; -template +template struct pteam_mem - : __detail::__allocator_templ<__T, omp_pteam_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_pteam_mem_alloc> {}; -template +template struct thread_mem - : __detail::__allocator_templ<__T, omp_thread_mem_alloc> {}; + : __detail::__allocator_templ <__T, omp_thread_mem_alloc> {}; } /* namespace allocator */ @@ -558,9 +558,10 @@ namespace ompx namespace allocator { -template +template struct gnu_pinned_mem - : omp::allocator::__detail::__allocator_templ<__T, ompx_gnu_pinned_mem_alloc> {}; + : omp::allocator::__detail::__allocator_templ <__T, + ompx_gnu_pinned_mem_alloc> {}; } /* namespace allocator */ -- cgit v1.1