From 8f8cfa1ee21caffc7e916b568fbd1532a952497f Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 5 Nov 2025 09:57:09 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/ExpressionJSONHelpers.h | 5 +++-- Framework/Core/src/ExpressionJSONHelpers.cxx | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Framework/Core/include/Framework/ExpressionJSONHelpers.h b/Framework/Core/include/Framework/ExpressionJSONHelpers.h index 4cc8306462004..6b865399ecffb 100644 --- a/Framework/Core/include/Framework/ExpressionJSONHelpers.h +++ b/Framework/Core/include/Framework/ExpressionJSONHelpers.h @@ -13,11 +13,12 @@ #include "Framework/Expressions.h" -namespace o2::framework { +namespace o2::framework +{ struct ExpressionJSONHelpers { static std::unique_ptr read(std::istream& s); static void write(std::ostream& o, expressions::Node* n); }; -} +} // namespace o2::framework #endif // FRAMEWORK_EXPRESSIONJSONHELPERS_H diff --git a/Framework/Core/src/ExpressionJSONHelpers.cxx b/Framework/Core/src/ExpressionJSONHelpers.cxx index 3953d2f7614db..07713fcf395eb 100644 --- a/Framework/Core/src/ExpressionJSONHelpers.cxx +++ b/Framework/Core/src/ExpressionJSONHelpers.cxx @@ -20,7 +20,8 @@ #include #include "Framework/VariantHelpers.h" -namespace o2::framework { +namespace o2::framework +{ using nodes = expressions::Node::self_t; enum struct Nodes : int { @@ -550,7 +551,7 @@ void writeExpression(std::ostream& o, expressions::Node* n) } } } -} +} // namespace o2::framework void o2::framework::ExpressionJSONHelpers::write(std::ostream& o, expressions::Node* n) {