Skip to content

Commit 46f8fc4

Browse files
committed
Please consider the following formatting changes
1 parent 925dbcd commit 46f8fc4

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

Framework/Core/include/Framework/TableBuilder.h

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
#include <arrow/table.h>
2929
#include <arrow/builder.h>
3030

31-
#include <vector>
32-
#include <string>
31+
#include <concepts>
3332
#include <memory>
33+
#include <string>
3434
#include <tuple>
3535
#include <type_traits>
36-
#include <concepts>
36+
#include <vector>
3737

3838
namespace arrow
3939
{
@@ -568,10 +568,8 @@ concept BulkInsertable = (std::integral<std::decay<T>> && !std::same_as<bool, st
568568

569569
template <typename T>
570570
struct InsertionTrait {
571-
static consteval DirectInsertion<T> policy()
572-
requires(!BulkInsertable<T>);
573-
static consteval CachedInsertion<T> policy()
574-
requires(BulkInsertable<T>);
571+
static consteval DirectInsertion<T> policy() requires(!BulkInsertable<T>);
572+
static consteval CachedInsertion<T> policy() requires(BulkInsertable<T>);
575573
using Policy = decltype(policy());
576574
};
577575

0 commit comments

Comments
 (0)