From b3557bfbf50f9aecbbcd1054584ff9199cd90dad Mon Sep 17 00:00:00 2001 From: Dan Ibanez Date: Thu, 22 Dec 2016 10:45:31 -0700 Subject: [PATCH] add missing return in comm_tiled_kokkos --- src/KOKKOS/comm_tiled_kokkos.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KOKKOS/comm_tiled_kokkos.cpp b/src/KOKKOS/comm_tiled_kokkos.cpp index f3ea9d7abf..adcc634aa1 100644 --- a/src/KOKKOS/comm_tiled_kokkos.cpp +++ b/src/KOKKOS/comm_tiled_kokkos.cpp @@ -262,5 +262,5 @@ void CommTiledKokkos::forward_comm_array(int nsize, double **array) int CommTiledKokkos::exchange_variable(int n, double *inbuf, double *&outbuf) { - CommTiled::exchange_variable(n,inbuf,outbuf); -} \ No newline at end of file + return CommTiled::exchange_variable(n,inbuf,outbuf); +}