From 355b6f4e88b318d653ddba580110bae16b419ad4 Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Sat, 15 Apr 2023 22:34:45 -0400 Subject: [PATCH] const int by value is kinda pointless Co-authored-by: Paul Romano --- include/openmc/message_passing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openmc/message_passing.h b/include/openmc/message_passing.h index abd6f68b05..a1641a9069 100644 --- a/include/openmc/message_passing.h +++ b/include/openmc/message_passing.h @@ -31,7 +31,7 @@ extern MPI_Comm intracomm; // and returns a vector which is the exclusive parallel scan across // all of those numbers, having a length of the number of MPI ranks // plus one. -vector calculate_parallel_index_vector(const int64_t size); +vector calculate_parallel_index_vector(int64_t size); } // namespace mpi } // namespace openmc