Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Jul 1, 2024
1 parent 8684703 commit cee4647
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -782,8 +782,9 @@ struct ColumnDataHolder {
};

template <typename T, typename B>
concept HasBinding = requires(T& t) {
{ t.B::mColumnIterator };
concept HasBinding = requires(T& t)
{
{t.B::mColumnIterator};
};

template <typename IP, typename... C>
Expand Down Expand Up @@ -978,8 +979,7 @@ struct RowViewCore : public IP, C... {
// error if constructor for the table or any other thing involving a missing
// binding is preinstanciated.
template <typename B>
requires(HasBinding<table_t, B>)
auto getDynamicBinding()
requires(HasBinding<table_t, B>) auto getDynamicBinding()
{
return &B::mColumnIterator;
}
Expand Down

0 comments on commit cee4647

Please sign in to comment.