Skip to content

Commit 9c625d2

Browse files
authored
Merge pull request #70 from alibuild/alibot-cleanup-13664
2 parents 4f3fff7 + e72b0cb commit 9c625d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3849,7 +3849,7 @@ using SmallGroupsUnfiltered = SmallGroupsBase<T, false>;
38493849

38503850
template <typename T>
38513851
concept is_smallgroups = requires {
3852-
[]<typename B, bool A>(SmallGroupsBase<B,A>*){}(std::declval<T*>());
3852+
[]<typename B, bool A>(SmallGroupsBase<B, A>*) {}(std::declval<T*>());
38533853
};
38543854
} // namespace o2::soa
38553855

Framework/Core/include/Framework/Expressions.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ struct LiteralStorage {
7979
using LiteralValue = LiteralStorage<int, bool, float, double, uint8_t, int64_t, int16_t, uint16_t, int8_t, uint32_t, uint64_t>;
8080

8181
#define SELECT_ARROW_TYPE(_Ctype_, _Atype_) \
82-
template <_Ctype_ T> \
83-
constexpr auto selectArrowType() \
84-
{ \
85-
return atype::_Atype_; \
86-
}
82+
template <_Ctype_ T> \
83+
constexpr auto selectArrowType() \
84+
{ \
85+
return atype::_Atype_; \
86+
}
8787

8888
SELECT_ARROW_TYPE(typename, NA);
8989
SELECT_ARROW_TYPE(bool, BOOL);

0 commit comments

Comments
 (0)