Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -3849,7 +3849,7 @@ using SmallGroupsUnfiltered = SmallGroupsBase<T, false>;

template <typename T>
concept is_smallgroups = requires {
[]<typename B, bool A>(SmallGroupsBase<B,A>*){}(std::declval<T*>());
[]<typename B, bool A>(SmallGroupsBase<B, A>*) {}(std::declval<T*>());
};
} // namespace o2::soa

Expand Down
10 changes: 5 additions & 5 deletions Framework/Core/include/Framework/Expressions.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ struct LiteralStorage {
using LiteralValue = LiteralStorage<int, bool, float, double, uint8_t, int64_t, int16_t, uint16_t, int8_t, uint32_t, uint64_t>;

#define SELECT_ARROW_TYPE(_Ctype_, _Atype_) \
template <_Ctype_ T> \
constexpr auto selectArrowType() \
{ \
return atype::_Atype_; \
}
template <_Ctype_ T> \
constexpr auto selectArrowType() \
{ \
return atype::_Atype_; \
}

SELECT_ARROW_TYPE(typename, NA);
SELECT_ARROW_TYPE(bool, BOOL);
Expand Down
Loading