File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1715,7 +1715,8 @@ class Table
17151715
17161716 template <typename IP, typename Parent, typename ... T>
17171717 struct TableIteratorBase : base_iterator<IP> {
1718- using external_index_columns_t = decltype ([]<typename ... C>(framework::pack<C...>) -> framework::selected_pack<soa::is_external_index_t , C...> {}(columns_t {}));
1718+ using columns_t = typename Parent::columns_t ;
1719+ using external_index_columns_t = typename Parent::external_index_columns_t ;
17191720 using bindings_pack_t = decltype ([]<typename ... C>(framework::pack<C...>) -> framework::pack<typename C::binding_t ...> {}(external_index_columns_t {}));
17201721 static constexpr const std::array<TableRef, sizeof ...(T)> originals{T::ref...};
17211722 using policy_t = IP;
You can’t perform that action at this time.
0 commit comments