File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -782,8 +782,9 @@ struct ColumnDataHolder {
782782};
783783
784784template <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
789790template <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>
You can’t perform that action at this time.
0 commit comments