From 672bbbe494df00854648d336943368340844b8c7 Mon Sep 17 00:00:00 2001 From: Dan Ibanez Date: Wed, 25 Jan 2017 16:03:11 -0700 Subject: [PATCH] add more missing KOKKOS_INLINE_FUNCTION attributes --- src/KOKKOS/pair_coul_debye_kokkos.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/KOKKOS/pair_coul_debye_kokkos.h b/src/KOKKOS/pair_coul_debye_kokkos.h index 1f6d222e04..4aadcbe4e1 100644 --- a/src/KOKKOS/pair_coul_debye_kokkos.h +++ b/src/KOKKOS/pair_coul_debye_kokkos.h @@ -44,7 +44,9 @@ class PairCoulDebyeKokkos : public PairCoulDebye { double init_one(int, int); struct params_coul{ + KOKKOS_INLINE_FUNCTION params_coul(){cutsq=0,scale=0;}; + KOKKOS_INLINE_FUNCTION params_coul(int i){cutsq=0,scale=0;}; F_FLOAT cutsq, scale; };