File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ struct ParticleTileData
311311
312312// SOA Particle Structure
313313template <int T_NArrayReal, int T_NArrayInt>
314- struct alignas (8 ) ConstSoAParticle : SoAParticleBase
314+ struct alignas (sizeof ( double ) ) ConstSoAParticle : SoAParticleBase
315315{
316316 static constexpr int NArrayReal = T_NArrayReal;
317317 static constexpr int NArrayInt = T_NArrayInt;
@@ -373,7 +373,7 @@ struct alignas(8) ConstSoAParticle : SoAParticleBase
373373};
374374
375375template <int T_NArrayReal, int T_NArrayInt>
376- struct alignas (8 ) SoAParticle : SoAParticleBase
376+ struct alignas (sizeof ( double ) ) SoAParticle : SoAParticleBase
377377{
378378 static constexpr int NArrayReal = T_NArrayReal;
379379 static constexpr int NArrayInt = T_NArrayInt;
You can’t perform that action at this time.
0 commit comments