From cee46478298305664483cbdc5440207e6570cc87 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Mon, 1 Jul 2024 07:37:41 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/ASoA.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index d2de55b0b10bc..f147c3214d3ad 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -782,8 +782,9 @@ struct ColumnDataHolder { }; template -concept HasBinding = requires(T& t) { - { t.B::mColumnIterator }; +concept HasBinding = requires(T& t) +{ + {t.B::mColumnIterator}; }; template @@ -978,8 +979,7 @@ struct RowViewCore : public IP, C... { // error if constructor for the table or any other thing involving a missing // binding is preinstanciated. template - requires(HasBinding) - auto getDynamicBinding() + requires(HasBinding) auto getDynamicBinding() { return &B::mColumnIterator; }