const int by value is pointless

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Gavin Ridley 2023-04-15 22:35:14 -04:00 committed by GitHub
parent 355b6f4e88
commit b52e1f106c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ extern "C" bool openmc_master()
return mpi::master;
}
vector<int64_t> calculate_parallel_index_vector(const int64_t size)
vector<int64_t> calculate_parallel_index_vector(int64_t size)
{
vector<int64_t> result;
result.reserve(n_procs + 1);