Skip to content

Commit

Permalink
dirmerge: Code formatting fixes from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lestropie committed Aug 27, 2024
1 parent 49f7ede commit 4f52a59
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/dirmerge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void run() {
return largestshell_index;
}();
INFO("first volume will be from shell b=" + str(bvalue[largest_shell]));
size_t largest_subset_within_largest_shell = [&] {
const size_t largest_subset_within_largest_shell = [&] {
size_t largestsubset_index = 0;
size_t largestsubset_n = dirs[largest_shell][0].size();
for (size_t n = 1; n != dirs[largest_shell].size(); ++n) {
Expand All @@ -149,7 +149,8 @@ void run() {
}
std::random_device rd;
std::mt19937 rng(rd());
const size_t first = std::uniform_int_distribution<size_t>(0, dirs[largest_shell][largest_subset_within_largest_shell].size() - 1)(rng);
const size_t first = std::uniform_int_distribution<size_t>(
0, dirs[largest_shell][largest_subset_within_largest_shell].size() - 1)(rng);

std::vector<OutDir> merged;

Expand Down

0 comments on commit 4f52a59

Please sign in to comment.