From 38e0e4bb69ff7859f6e0fa7db8c774f488d5c866 Mon Sep 17 00:00:00 2001 From: Stan Moore Date: Thu, 2 Feb 2017 13:24:05 -0700 Subject: [PATCH] Add missing typedef in Kokkos pair styles --- src/KOKKOS/pair_lj_cut_coul_debye_kokkos.h | 1 + src/KOKKOS/pair_lj_expand_kokkos.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/KOKKOS/pair_lj_cut_coul_debye_kokkos.h b/src/KOKKOS/pair_lj_cut_coul_debye_kokkos.h index e0ab231359..2f13db57c7 100644 --- a/src/KOKKOS/pair_lj_cut_coul_debye_kokkos.h +++ b/src/KOKKOS/pair_lj_cut_coul_debye_kokkos.h @@ -34,6 +34,7 @@ class PairLJCutCoulDebyeKokkos : public PairLJCutCoulDebye { enum {EnabledNeighFlags=FULL|HALFTHREAD|HALF}; enum {COUL_FLAG=1}; typedef DeviceType device_type; + typedef ArrayTypes AT; PairLJCutCoulDebyeKokkos(class LAMMPS *); ~PairLJCutCoulDebyeKokkos(); diff --git a/src/KOKKOS/pair_lj_expand_kokkos.h b/src/KOKKOS/pair_lj_expand_kokkos.h index 3b0067bcd8..093031f7d7 100644 --- a/src/KOKKOS/pair_lj_expand_kokkos.h +++ b/src/KOKKOS/pair_lj_expand_kokkos.h @@ -34,6 +34,7 @@ class PairLJExpandKokkos : public PairLJExpand { enum {EnabledNeighFlags=FULL|HALFTHREAD|HALF|N2}; enum {COUL_FLAG=0}; typedef DeviceType device_type; + typedef ArrayTypes AT; PairLJExpandKokkos(class LAMMPS *); ~PairLJExpandKokkos();