Skip to content

Commit e0a4d7e

Browse files
committed
workaround for classic tables
1 parent fa07097 commit e0a4d7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ struct WritingCursor<soa::Table<ORIGIN, PC...>> {
103103
};
104104

105105
/// Helper to define output for a Table
106-
template <soa::is_table T>
106+
template <typename T>
107+
requires soa::is_table<T> || soa::is_iterator<T>
107108
struct OutputForTable {
108109
using table_t = T;
109110
using metadata = typename aod::MetadataTrait<table_t>::metadata;

0 commit comments

Comments
 (0)