Skip to content

Commit

Permalink
UI Integration typing
Browse files Browse the repository at this point in the history
  • Loading branch information
nyoungbq committed Sep 20, 2024
1 parent 8ae7f02 commit 3cb4bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplnx/Utilities/HistogramUtilities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Result<> GenerateHistogram(const InputContainer<Type>& inputStore, OutputContain
* @param histogramCountsStore this is the container that will hold the counts for each bin (variable type sizing)
* @param overflow this is an atomic counter for the number of values that fall outside the bin range
*/
template <typename Type, std::integral SizeType, template <typename> class OutputContainer>
template <typename Type, std::integral SizeType, template <typename, class...> class OutputContainer>
Result<> GenerateHistogramAtComponent(const AbstractDataStore<Type>& inputStore, OutputContainer<Type>& binRangesStore, const std::pair<Type, Type>& rangeMinMax, const std::atomic_bool& shouldCancel,
const int32 numBins, OutputContainer<SizeType>& histogramCountsStore, std::atomic<usize>& overflow, usize componentIndex)
{
Expand Down

0 comments on commit 3cb4bc1

Please sign in to comment.