Skip to content
Snippets Groups Projects

C++20 fixes

Merged Andre Sailer requested to merge sailer/Gaudi:c++20Fixes into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -27,7 +27,7 @@ namespace Gaudi::Accumulators {
struct FormatHistDefault {
std::string_view text;
FormatHistDefault( std::string_view t ) : text{ t } {}
auto operator()( size_t n ) { return fmt::format( text, n ); }
auto operator()( size_t n ) { return fmt::format( fmt::runtime( text ), n ); }
};
/**
Loading