Skip to content

Commit a94ae94

Browse files
authored
Merge pull request #98 from alibuild/alibot-cleanup-13933
2 parents 63c8664 + 5d8c6ee commit a94ae94

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
\

0 commit comments

Comments
 (0)