add missing return in comm_tiled_kokkos

This commit is contained in:
Dan Ibanez
2016-12-22 10:45:31 -07:00
committed by Stan Gerald Moore (stamoor)
parent 62dea1bb63
commit b3557bfbf5

View File

@ -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);
}
return CommTiled::exchange_variable(n,inbuf,outbuf);
}