Skip to content

Commit 671b79e

Browse files
authored
Merge pull request #88 from alibuild/alibot-cleanup-14141
2 parents 9e6c048 + c142b97 commit 671b79e

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3162,7 +3162,7 @@ consteval auto getIndexTargets()
31623162
using _Name_ = _Name_##From<o2::aod::Hash<_Origin_ ""_h>>;
31633163

31643164
#define DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE(_Name_, _Table_, _Description_, ...) \
3165-
O2HASH(#_Name_ "CfgExtension"); \
3165+
O2HASH(#_Name_ "CfgExtension"); \
31663166
DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE_FULL(_Name_, #_Name_ "CfgExtension", _Table_, "AOD", "EX" _Description_, 0, __VA_ARGS__)
31673167

31683168
#define DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, _Origin_, _Version_, _Desc_, _Exclusive_, ...) \

Framework/Core/include/Framework/AnalysisManagers.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,17 +141,20 @@ bool requestInputs(std::vector<InputSpec>&, T const&)
141141
}
142142

143143
template <is_spawns T>
144-
const char* controlOption() {
144+
const char* controlOption()
145+
{
145146
return "control:spawn";
146147
}
147148

148149
template <is_builds T>
149-
const char* controlOption() {
150+
const char* controlOption()
151+
{
150152
return "control:build";
151153
}
152154

153155
template <is_defines T>
154-
const char* controlOption() {
156+
const char* controlOption()
157+
{
155158
return "control:define";
156159
}
157160

Framework/Core/include/Framework/Expressions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ struct Filter {
416416
(void)designateSubtrees(node.get());
417417
}
418418

419-
Filter& operator= (Filter&& other) noexcept
419+
Filter& operator=(Filter&& other) noexcept
420420
{
421421
node = std::move(other.node);
422422
return *this;

Framework/Core/test/test_TableSpawner.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ TEST_CASE("TestTableSpawner")
7777
}
7878

7979
Defines<ExcPoints> excpts;
80-
excpts.projectors[0] = test::x* test::x + test::y * test::y + test::z * test::z;
80+
excpts.projectors[0] = test::x * test::x + test::y * test::y + test::z * test::z;
8181

8282
auto extension_2 = ExcPointsCfgExtension{o2::framework::spawner<o2::aod::Hash<"EXCFGPTS/0"_h>>({t1}, o2::aod::Hash<"ExcPoints"_h>::str, excpts.projectors.data(), excpts.projector)};
8383
auto excpoints = ExcPoints{{t1, extension_2.asArrowTable()}, 0};

0 commit comments

Comments
 (0)