We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c89004 commit eb4e205Copy full SHA for eb4e205
1 file changed
Framework/Core/include/Framework/AnalysisHelpers.h
@@ -188,13 +188,13 @@ struct Spawns : TableTransform<typename aod::MetadataTrait<framework::pack_head_
188
return expression_pack_t{};
189
}
190
191
- T* operator->()
+ typename T::table_t* operator->()
192
{
193
return table.get();
194
195
- T& operator*()
+ typename T::table_t const& operator*() const
196
197
- return *table.get();
+ return *table;
198
199
200
auto asArrowTable()
@@ -359,9 +359,9 @@ struct Builds : TableTransform<typename aod::MetadataTrait<T>::metadata> {
359
360
361
362
+ T const& operator*() const
363
364
365
366
367
0 commit comments