diff --git a/src/angle.cpp b/src/angle.cpp index 79893cc52f..ccb53dc84f 100644 --- a/src/angle.cpp +++ b/src/angle.cpp @@ -50,7 +50,7 @@ Angle::Angle(LAMMPS *_lmp) : Pointers(_lmp) datamask_read = ALL_MASK; datamask_modify = ALL_MASK; - copymode = 0; + copymode = kokkosable = 0; } /* ---------------------------------------------------------------------- */ diff --git a/src/angle.h b/src/angle.h index 542bad4911..759f1a1aa9 100644 --- a/src/angle.h +++ b/src/angle.h @@ -44,7 +44,7 @@ class Angle : protected Pointers { ExecutionSpace execution_space; unsigned int datamask_read, datamask_modify; - int copymode; + int copymode, kokkosable; Angle(class LAMMPS *); ~Angle() override; diff --git a/src/dihedral.cpp b/src/dihedral.cpp index 3e995fc405..2f591b1fc1 100644 --- a/src/dihedral.cpp +++ b/src/dihedral.cpp @@ -48,7 +48,7 @@ Dihedral::Dihedral(LAMMPS *_lmp) : Pointers(_lmp) datamask_read = ALL_MASK; datamask_modify = ALL_MASK; - copymode = 0; + copymode = kokkosable = 0; } /* ---------------------------------------------------------------------- */ diff --git a/src/dihedral.h b/src/dihedral.h index cf3d3f7d9a..34210929cd 100644 --- a/src/dihedral.h +++ b/src/dihedral.h @@ -41,7 +41,7 @@ class Dihedral : protected Pointers { ExecutionSpace execution_space; unsigned int datamask_read, datamask_modify; - int copymode; + int copymode, kokkosable; Dihedral(class LAMMPS *); ~Dihedral() override; diff --git a/src/improper.cpp b/src/improper.cpp index dd4b1b2b25..3476bcdb50 100644 --- a/src/improper.cpp +++ b/src/improper.cpp @@ -47,7 +47,7 @@ Improper::Improper(LAMMPS *_lmp) : Pointers(_lmp) datamask_read = ALL_MASK; datamask_modify = ALL_MASK; - copymode = 0; + copymode = kokkosable = 0; } /* ---------------------------------------------------------------------- */ diff --git a/src/improper.h b/src/improper.h index 22a5d09926..400e950967 100644 --- a/src/improper.h +++ b/src/improper.h @@ -46,7 +46,7 @@ class Improper : protected Pointers { ExecutionSpace execution_space; unsigned int datamask_read, datamask_modify; - int copymode; + int copymode, kokkosable; Improper(class LAMMPS *); ~Improper() override;