Skip to content

Commit 7f912ea

Browse files
committed
fixup! array instead of vector; missing static; remove obsolete FIXMEs
1 parent 7321dbb commit 7f912ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ struct Spawns : decltype(transformBase<T>()) {
690690

691691
std::shared_ptr<typename T::table_t> table = nullptr;
692692
std::shared_ptr<extension_t> extension = nullptr;
693-
static std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>)->std::array<expressions::Projector, sizeof...(C)>
693+
std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>)->std::array<expressions::Projector, sizeof...(C)>
694694
{
695695
return {{std::move(C::Projector())...}};
696696
}

0 commit comments

Comments
 (0)