File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2380,15 +2380,15 @@ O2HASH("TEST/0");
23802380// / A configurable 'expression' column. i.e. a column that can be calculated from other
23812381// / columns with gandiva based on dynamically supplied C++ expression or a string definition.
23822382#define DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN (_Name_, _Getter_, _Type_, _Label_ ) \
2383- struct _Name_ : o2::soa::PersistentColumn<_Type_, _Name_> { \
2383+ struct _Name_ : o2::soa::PersistentColumn<_Type_, _Name_> { \
23842384 static constexpr const char * mLabel = _Label_; \
23852385 static constexpr const int32_t mHash = _Label_ " " _h; \
2386- using base = o2::soa::PersistentColumn<_Type_, _Name_>; \
2386+ using base = o2::soa::PersistentColumn<_Type_, _Name_>; \
23872387 using type = _Type_; \
23882388 using column_t = _Name_; \
23892389 using spawnable_t = std::true_type; \
23902390 _Name_ (arrow::ChunkedArray const * column) \
2391- : o2::soa::PersistentColumn<_Type_, _Name_>(o2::soa::ColumnIterator<type>(column)) \
2391+ : o2::soa::PersistentColumn<_Type_, _Name_>(o2::soa::ColumnIterator<type>(column)) \
23922392 { \
23932393 } \
23942394 \
You can’t perform that action at this time.
0 commit comments