From 3f95ac68a1d7cf764f58e360ae9b4c43e5913095 Mon Sep 17 00:00:00 2001 From: Luca Fedeli Date: Wed, 30 Aug 2023 03:36:46 +0200 Subject: Clang tidy CI test: add more readability checks to clang tidy CI test (#4146) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add more readability checks to clang-tidy CI test * reformat check list * starting to address issues found with clang-tidy£ * addressing issues * remove check * address issues * address all issues * address issue found with github code scanning --- Source/Particles/Sorting/SortingUtils.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Particles/Sorting/SortingUtils.H') diff --git a/Source/Particles/Sorting/SortingUtils.H b/Source/Particles/Sorting/SortingUtils.H index e2b8276a7..0bec92d6e 100644 --- a/Source/Particles/Sorting/SortingUtils.H +++ b/Source/Particles/Sorting/SortingUtils.H @@ -98,7 +98,7 @@ class fillBufferFlag amrex::Geometry const& geom ) { // Extract simple structure that can be used directly on the GPU - m_particles = &(pti.GetArrayOfStructs()[0]); + m_particles = pti.GetArrayOfStructs().data(); m_buffer_mask = (*bmasks)[pti].array(); m_inexflag_ptr = inexflag.dataPtr(); m_domain = geom.Domain(); @@ -157,7 +157,7 @@ class fillBufferFlagRemainingParticles m_start_index(start_index) { // Extract simple structure that can be used directly on the GPU - m_particles = &(pti.GetArrayOfStructs()[0]); + m_particles = pti.GetArrayOfStructs().data(); m_buffer_mask = (*bmasks)[pti].array(); m_inexflag_ptr = inexflag.dataPtr(); m_indices_ptr = particle_indices.dataPtr(); -- cgit v1.2.3