Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Aug 15, 2024
1 parent 925dbcd commit 46f8fc4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Framework/Core/include/Framework/TableBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
#include <arrow/table.h>
#include <arrow/builder.h>

#include <vector>
#include <string>
#include <concepts>
#include <memory>
#include <string>
#include <tuple>
#include <type_traits>
#include <concepts>
#include <vector>

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

template <typename T>
struct InsertionTrait {
static consteval DirectInsertion<T> policy()
requires(!BulkInsertable<T>);
static consteval CachedInsertion<T> policy()
requires(BulkInsertable<T>);
static consteval DirectInsertion<T> policy() requires(!BulkInsertable<T>);
static consteval CachedInsertion<T> policy() requires(BulkInsertable<T>);
using Policy = decltype(policy());
};

Expand Down

0 comments on commit 46f8fc4

Please sign in to comment.