Skip to content

Commit d775887

Browse files
committed
Fixed formatting
Signed-off-by: Jared Duffey <[email protected]>
1 parent 9f06e21 commit d775887

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/ComputeArrayHistogramByFeature.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,8 @@ class GenerateFeatureHistogramImpl
213213
progressCount++;
214214
if(progressCount > progressIncrement)
215215
{
216-
progressMessenger.sendProgressMessage(progressCount, [&](usize currentProgress, usize maxProgress) {
217-
return fmt::format("Calculating feature histograms {}/{}", currentProgress, maxProgress);
218-
});
216+
progressMessenger.sendProgressMessage(progressCount,
217+
[&](usize currentProgress, usize maxProgress) { return fmt::format("Calculating feature histograms {}/{}", currentProgress, maxProgress); });
219218
progressCount = 0;
220219
}
221220
}

src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/ComputeNeighborhoods.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ class ComputeNeighborhoodsImpl
4444
incCount++;
4545
if(incCount >= increment)
4646
{
47-
progressMessenger.sendProgressMessage(incCount, [&](usize currentProgress, usize maxProgress) {
48-
return fmt::format("Calculating feature histograms {}/{}", currentProgress, maxProgress);
49-
});
47+
progressMessenger.sendProgressMessage(incCount, [&](usize currentProgress, usize maxProgress) { return fmt::format("Calculating feature histograms {}/{}", currentProgress, maxProgress); });
5048
incCount = 0;
5149
}
5250

0 commit comments

Comments
 (0)