From 46f8fc40b7b7d9a691948729cae6ff2c9e1b4e08 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 15 Aug 2024 09:06:55 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/TableBuilder.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Framework/Core/include/Framework/TableBuilder.h b/Framework/Core/include/Framework/TableBuilder.h index 0df83bdfb0f53..43f4f6909108d 100644 --- a/Framework/Core/include/Framework/TableBuilder.h +++ b/Framework/Core/include/Framework/TableBuilder.h @@ -28,12 +28,12 @@ #include #include -#include -#include +#include #include +#include #include #include -#include +#include namespace arrow { @@ -568,10 +568,8 @@ concept BulkInsertable = (std::integral> && !std::same_as struct InsertionTrait { - static consteval DirectInsertion policy() - requires(!BulkInsertable); - static consteval CachedInsertion policy() - requires(BulkInsertable); + static consteval DirectInsertion policy() requires(!BulkInsertable); + static consteval CachedInsertion policy() requires(BulkInsertable); using Policy = decltype(policy()); };