Skip to content

Commit ffbafd2

Browse files
committed
Please consider the following formatting changes
1 parent d72f22a commit ffbafd2

File tree

1 file changed

+5
-5
lines changed
  • Framework/Core/include/Framework

1 file changed

+5
-5
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,9 @@ struct ColumnDataHolder {
782782
};
783783

784784
template <typename T, typename B>
785-
concept CanBind = requires(T&& t) {
786-
{ t.B::mColumnIterator };
785+
concept CanBind = requires(T&& t)
786+
{
787+
{t.B::mColumnIterator};
787788
};
788789

789790
template <typename IP, typename... C>
@@ -978,12 +979,11 @@ struct RowViewCore : public IP, C... {
978979
// error if constructor for the table or any other thing involving a missing
979980
// binding is preinstanciated.
980981
template <typename B>
981-
requires(CanBind<typename table_t::iterator, B>)
982-
decltype(auto) getDynamicBinding()
982+
requires(CanBind<typename table_t::iterator, B>) decltype(auto) getDynamicBinding()
983983
{
984984
static_assert(std::is_same_v<decltype(&(static_cast<B*>(this)->mColumnIterator)), std::decay_t<decltype(B::mColumnIterator)>*>, "foo");
985985
return &(static_cast<B*>(this)->mColumnIterator);
986-
//return static_cast<std::decay_t<decltype(B::mColumnIterator)>*>(nullptr);
986+
// return static_cast<std::decay_t<decltype(B::mColumnIterator)>*>(nullptr);
987987
}
988988

989989
template <typename B>

0 commit comments

Comments
 (0)