Skip to content

Commit e97bca8

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

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class GenerateFeatureHistogramImpl
158158
m_Overflow++;
159159
}
160160
} // end of numTuples loop
161-
} // end of increment else
161+
} // end of increment else
162162

163163
// Bool breaks neighbor lists; if we have made it here we know m_ModalBinRangesList is a nullptr
164164
if constexpr(!std::is_same_v<Type, bool>)
@@ -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)