From 179299e8fe00cb16d5d55b79ff2a27169ca9b25a Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 5 Jun 2020 14:26:20 -0400 Subject: [PATCH] Fix type of variable in GridTools::compute_local_to_global_vertex_index_map --- source/grid/grid_tools.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index d18b0033fd..9f6beb99d2 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -2266,7 +2266,7 @@ namespace GridTools // Make indices global by getting the number of vertices owned by each // processors and shifting the indices accordingly - types::global_dof_index shift = 0; + types::global_vertex_index shift = 0; int ierr = MPI_Exscan(&next_index, &shift, 1, -- 2.39.5