From 44ded1c1fee433ed50e5392d44752b7b0e57369a Mon Sep 17 00:00:00 2001 From: Richard Berger Date: Thu, 10 Feb 2022 14:19:51 -0500 Subject: [PATCH] Reorder fields init in IntelBuffer ctor --- src/INTEL/intel_buffers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/INTEL/intel_buffers.cpp b/src/INTEL/intel_buffers.cpp index cbbc609fc0..f84505955c 100644 --- a/src/INTEL/intel_buffers.cpp +++ b/src/INTEL/intel_buffers.cpp @@ -27,7 +27,7 @@ using namespace LAMMPS_NS; template IntelBuffers::IntelBuffers(class LAMMPS *lmp_in) : lmp(lmp_in), _x(0), _q(0), _quat(0), _f(0), _off_threads(0), - _buf_size(0), _buf_local_size(0), _n_list_ptrs(1), _max_list_ptrs(4) { + _n_list_ptrs(1), _max_list_ptrs(4), _buf_size(0), _buf_local_size(0) { _neigh_list_ptrs = new IntelNeighListPtrs[_max_list_ptrs]; _neigh_list_ptrs[0].cnumneigh = 0; _list_alloc_atoms = 0;