We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d16c8a9 commit e345a22Copy full SHA for e345a22
Framework/Core/include/Framework/TableBuilder.h
@@ -753,7 +753,6 @@ auto makeEmptyTable()
753
return b.finalize();
754
}
755
756
-
757
template <PackLike P>
758
auto makeEmptyTable(const char* name)
759
{
Framework/Foundation/include/Framework/Pack.h
@@ -31,7 +31,7 @@ constexpr std::size_t pack_size(pack<Ts...> const&)
31
32
33
template <typename P>
34
-concept PackLike = requires (P &p) { o2::framework::pack_size(p); };
+concept PackLike = requires(P& p) { o2::framework::pack_size(p); };
35
36
template <std::size_t I, typename T>
37
struct pack_element;
0 commit comments