Skip to content

Commit 4012b71

Browse files
committed
make clang happy again
1 parent ed8f97b commit 4012b71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/hist/detail/MasterHistogram.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
namespace hist::detail {
88
// Simple typedef for clarity.
99
template<bool use_weighted_distribution>
10-
using PartialHistogram = GenericDistribution1D<use_weighted_distribution>::type;
10+
using PartialHistogram = typename GenericDistribution1D<use_weighted_distribution>::type;
1111

1212
// Simple typedef for clarity.
1313
template<bool use_weighted_distribution>
14-
using HydrationHistogram = GenericDistribution1D<use_weighted_distribution>::type;
14+
using HydrationHistogram = typename GenericDistribution1D<use_weighted_distribution>::type;
1515

1616
/**
1717
* @brief We also define the MasterHistogram type, which is identical to a PartialHistogram.

0 commit comments

Comments
 (0)