mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
const int by value is pointless
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
parent
355b6f4e88
commit
b52e1f106c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue