Skip to content

Commit cae08d9

Browse files
committed
Please consider the following formatting changes
1 parent 8d5109f commit cae08d9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Framework/Core/include/Framework/TableBuilder.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -562,17 +562,17 @@ template <class T, std::size_t N>
562562
struct is_bounded_array<std::array<T, N>> : std::true_type {
563563
};
564564

565-
template<typename T>
565+
template <typename T>
566566
concept BulkInsertable = requires(T a)
567567
{
568-
{
569-
std::is_integral_v<std::decay_t<T>> && !std::is_same_v<bool, std::decay_t<T>> };
568+
{
569+
std::is_integral_v<std::decay_t<T>> && !std::is_same_v<bool, std::decay_t<T>>};
570570
};
571571

572572
template <typename T>
573573
struct InsertionTrait {
574-
static consteval DirectInsertion<T> policy() requires (!BulkInsertable<T>);
575-
static consteval CachedInsertion<T> policy() requires (BulkInsertable<T>);
574+
static consteval DirectInsertion<T> policy() requires(!BulkInsertable<T>);
575+
static consteval CachedInsertion<T> policy() requires(BulkInsertable<T>);
576576
using Policy = decltype(policy());
577577
};
578578

0 commit comments

Comments
 (0)