Skip to content

Commit 5739efa

Browse files
committed
Please consider the following formatting changes
1 parent d16c8a9 commit 5739efa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Framework/Core/include/Framework/TableBuilder.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,6 @@ auto makeEmptyTable()
753753
return b.finalize();
754754
}
755755

756-
757756
template <PackLike P>
758757
auto makeEmptyTable(const char* name)
759758
{

Framework/Foundation/include/Framework/Pack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ constexpr std::size_t pack_size(pack<Ts...> const&)
3131
}
3232

3333
template <typename P>
34-
concept PackLike = requires (P &p) { o2::framework::pack_size(p); };
34+
concept PackLike = requires(P& p) { o2::framework::pack_size(p); };
3535

3636
template <std::size_t I, typename T>
3737
struct pack_element;

0 commit comments

Comments
 (0)