Skip to content

Commit

Permalink
workaround for classic tables
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Nov 12, 2024
1 parent fa07097 commit e0a4d7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Framework/Core/include/Framework/AnalysisHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ struct WritingCursor<soa::Table<ORIGIN, PC...>> {
};

/// Helper to define output for a Table
template <soa::is_table T>
template <typename T>
requires soa::is_table<T> || soa::is_iterator<T>
struct OutputForTable {
using table_t = T;
using metadata = typename aod::MetadataTrait<table_t>::metadata;
Expand Down

0 comments on commit e0a4d7e

Please sign in to comment.