File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -562,17 +562,17 @@ template <class T, std::size_t N>
562562struct is_bounded_array <std::array<T, N>> : std::true_type {
563563};
564564
565- template <typename T>
565+ template <typename T>
566566concept 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
572572template <typename T>
573573struct 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
You can’t perform that action at this time.
0 commit comments