Skip to content
Snippets Groups Projects
Commit 19d9aa72 authored by Roel Aaij's avatar Roel Aaij
Browse files

Fix gcc11 annonymous namespace warnings

parent da0230fd
No related branches found
No related tags found
No related merge requests found
......@@ -502,10 +502,10 @@ namespace Gaudi::Accumulators {
HistogramingCounterBaseInternal<ND, Atomicity, Arithmetic, Type, Accumulator, std::make_index_sequence<ND>>;
namespace naming {
constexpr char histogramString[] = "histogram:Histogram";
constexpr char weightedHistogramString[] = "histogram:WeightedHistogram";
constexpr char profilehistogramString[] = "histogram:ProfileHistogram";
constexpr char weightedProfilehistogramString[] = "histogram:WeightedProfileHistogram";
inline constexpr char histogramString[] = "histogram:Histogram";
inline constexpr char weightedHistogramString[] = "histogram:WeightedHistogram";
inline constexpr char profilehistogramString[] = "histogram:ProfileHistogram";
inline constexpr char weightedProfilehistogramString[] = "histogram:WeightedProfileHistogram";
} // namespace naming
/// standard histograming counter. See HistogramingCounterBase for details
template <unsigned int ND, atomicity Atomicity = atomicity::full, typename Arithmetic = double>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment