From 87c34fb144a8ca37807fb66415b6c6e04ea52b0d Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 14 May 2020 19:27:26 -0400 Subject: [PATCH] dihedral base class did not initialize suffix_flag member. --- src/dihedral.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dihedral.cpp b/src/dihedral.cpp index 7c6f6aad5e..ac2d432cfb 100644 --- a/src/dihedral.cpp +++ b/src/dihedral.cpp @@ -18,6 +18,7 @@ #include "atom_masks.h" #include "memory.h" #include "error.h" +#include "suffix.h" using namespace LAMMPS_NS; @@ -32,6 +33,7 @@ Dihedral::Dihedral(LAMMPS *lmp) : Pointers(lmp) writedata = 0; allocated = 0; + suffix_flag = Suffix::NONE; maxeatom = maxvatom = maxcvatom = 0; eatom = NULL;