update remaining places that used to support -DLAMMPS_SMALLSMALL

This commit is contained in:
Axel Kohlmeyer
2025-03-15 02:11:50 -04:00
parent 07c0c435ef
commit 2c3824bdd0
8 changed files with 7 additions and 66 deletions

View File

@ -14,10 +14,7 @@ using ::testing::HasSubstr;
using ::testing::StartsWith;
extern "C" {
#ifdef LAMMPS_SMALLSMALL
typedef int32_t step_t;
typedef int32_t tag_t;
#elif LAMMPS_SMALLBIG
#if LAMMPS_SMALLBIG
using step_t = int64_t;
using tag_t = int32_t;
#else