Skip to content

Commit

Permalink
temporary remove restriction until O2Physics #8322 is merged
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Nov 12, 2024
1 parent 6abd19f commit 2a0fe7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/Core/include/Framework/AnalysisManagers.h
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ struct SpawnManager {
static bool requestInputs(std::vector<InputSpec>&, T const&) { return false; }
};

template <soa::is_table TABLE>
template <typename TABLE>
struct SpawnManager<Spawns<TABLE>> {
static bool requestInputs(std::vector<InputSpec>& inputs, Spawns<TABLE>& spawns)
{
Expand All @@ -619,7 +619,7 @@ struct IndexManager {
static bool requestInputs(std::vector<InputSpec>&, T const&) { return false; };
};

template <typename IDX>
template <soa::is_index_table IDX>
struct IndexManager<Builds<IDX>> {
static bool requestInputs(std::vector<InputSpec>& inputs, Builds<IDX>& builds)
{
Expand Down

0 comments on commit 2a0fe7c

Please sign in to comment.