Skip to content

Commit 3a77f95

Browse files
authored
Merge pull request #110 from alibuild/alibot-cleanup-14795
2 parents 9ec3563 + 8f8cfa1 commit 3a77f95

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Framework/Core/include/Framework/ExpressionJSONHelpers.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313

1414
#include "Framework/Expressions.h"
1515

16-
namespace o2::framework {
16+
namespace o2::framework
17+
{
1718
struct ExpressionJSONHelpers {
1819
static std::unique_ptr<expressions::Node> read(std::istream& s);
1920
static void write(std::ostream& o, expressions::Node* n);
2021
};
21-
}
22+
} // namespace o2::framework
2223

2324
#endif // FRAMEWORK_EXPRESSIONJSONHELPERS_H

Framework/Core/src/ExpressionJSONHelpers.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
#include <iostream>
2121
#include "Framework/VariantHelpers.h"
2222

23-
namespace o2::framework {
23+
namespace o2::framework
24+
{
2425

2526
using nodes = expressions::Node::self_t;
2627
enum struct Nodes : int {
@@ -550,7 +551,7 @@ void writeExpression(std::ostream& o, expressions::Node* n)
550551
}
551552
}
552553
}
553-
}
554+
} // namespace o2::framework
554555

555556
void o2::framework::ExpressionJSONHelpers::write(std::ostream& o, expressions::Node* n)
556557
{

0 commit comments

Comments
 (0)