Skip to content

Commit f256c31

Browse files
committed
adapt
1 parent efc6ff2 commit f256c31

File tree

1 file changed

+2
-2
lines changed
  • Framework/Core/include/Framework

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2380,10 +2380,10 @@ 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::Column<_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::Column<_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; \

0 commit comments

Comments
 (0)