From a15a3153414094b1ddb9268ca371fcb1fbc6f50a Mon Sep 17 00:00:00 2001 From: jtclemm Date: Thu, 31 Oct 2024 15:38:54 -0600 Subject: [PATCH] Missing variable declaration --- src/KOKKOS/comm_kokkos.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KOKKOS/comm_kokkos.cpp b/src/KOKKOS/comm_kokkos.cpp index eea79248fe..57c9d7c383 100644 --- a/src/KOKKOS/comm_kokkos.cpp +++ b/src/KOKKOS/comm_kokkos.cpp @@ -661,7 +661,7 @@ void CommKokkos::reverse_comm(Pair *pair, int size) template void CommKokkos::reverse_comm_device(Pair *pair, int size) { - int iswap,n; + int iswap,n,nsize; MPI_Request request; DAT::tdual_xfloat_1d k_buf_tmp;