From f0a11dbefdb281b7fa83be7b31872ccc8bb2da9a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 5 Jul 2024 16:16:04 -0400 Subject: [PATCH] also promote ndatum in MyPoolChunk class --- src/my_pool_chunk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/my_pool_chunk.h b/src/my_pool_chunk.h index fa0a4e2506..3a8209eb8d 100644 --- a/src/my_pool_chunk.h +++ b/src/my_pool_chunk.h @@ -18,8 +18,8 @@ namespace LAMMPS_NS { template class MyPoolChunk { public: - int ndatum; // total # of stored datums - int nchunk; // total # of stored chunks + bigint ndatum; // total # of stored datums + int nchunk; // total # of stored chunks MyPoolChunk(int user_minchunk = 1, int user_maxchunk = 1, int user_nbin = 1, int user_chunkperpage = 1024, int user_pagedelta = 1);