Skip to content

Commit acf370f

Browse files
committed
[meta.type.synop] Remove unnecessary linebreaks
1 parent 4b37647 commit acf370f

File tree

1 file changed

+10
-19
lines changed

1 file changed

+10
-19
lines changed

source/meta.tex

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
constexpr bool @\libglobal{is_final_v}@ = is_final<T>::value;
476476
template<class T>
477477
constexpr bool @\libglobal{is_aggregate_v}@ = is_aggregate<T>::value;
478-
template<class T>
478+
template<class T>
479479
constexpr bool @\libglobal{is_consteval_only_v}@ = is_consteval_only<T>::value;
480480
template<class T>
481481
constexpr bool @\libglobal{is_signed_v}@ = is_signed<T>::value;
@@ -508,39 +508,31 @@
508508
template<class T>
509509
constexpr bool @\libglobal{is_destructible_v}@ = is_destructible<T>::value;
510510
template<class T, class... Args>
511-
constexpr bool is_trivially_constructible_v
512-
= is_trivially_constructible<T, Args...>::value;
511+
constexpr bool is_trivially_constructible_v = is_trivially_constructible<T, Args...>::value;
513512
template<class T>
514513
constexpr bool is_trivially_default_constructible_v
515514
= is_trivially_default_constructible<T>::value;
516515
template<class T>
517-
constexpr bool is_trivially_copy_constructible_v
518-
= is_trivially_copy_constructible<T>::value;
516+
constexpr bool is_trivially_copy_constructible_v = is_trivially_copy_constructible<T>::value;
519517
template<class T>
520-
constexpr bool is_trivially_move_constructible_v
521-
= is_trivially_move_constructible<T>::value;
518+
constexpr bool is_trivially_move_constructible_v = is_trivially_move_constructible<T>::value;
522519
template<class T, class U>
523520
constexpr bool @\libglobal{is_trivially_assignable_v}@ = is_trivially_assignable<T, U>::value;
524521
template<class T>
525-
constexpr bool is_trivially_copy_assignable_v
526-
= is_trivially_copy_assignable<T>::value;
522+
constexpr bool is_trivially_copy_assignable_v = is_trivially_copy_assignable<T>::value;
527523
template<class T>
528-
constexpr bool is_trivially_move_assignable_v
529-
= is_trivially_move_assignable<T>::value;
524+
constexpr bool is_trivially_move_assignable_v = is_trivially_move_assignable<T>::value;
530525
template<class T>
531526
constexpr bool @\libglobal{is_trivially_destructible_v}@ = is_trivially_destructible<T>::value;
532527
template<class T, class... Args>
533-
constexpr bool is_nothrow_constructible_v
534-
= is_nothrow_constructible<T, Args...>::value;
528+
constexpr bool is_nothrow_constructible_v = is_nothrow_constructible<T, Args...>::value;
535529
template<class T>
536530
constexpr bool is_nothrow_default_constructible_v
537531
= is_nothrow_default_constructible<T>::value;
538532
template<class T>
539-
constexpr bool is_nothrow_copy_constructible_v
540-
= is_nothrow_copy_constructible<T>::value;
533+
constexpr bool is_nothrow_copy_constructible_v = is_nothrow_copy_constructible<T>::value;
541534
template<class T>
542-
constexpr bool is_nothrow_move_constructible_v
543-
= is_nothrow_move_constructible<T>::value;
535+
constexpr bool is_nothrow_move_constructible_v = is_nothrow_move_constructible<T>::value;
544536
template<class T, class U>
545537
constexpr bool @\libglobal{is_nothrow_assignable_v}@ = is_nothrow_assignable<T, U>::value;
546538
template<class T>
@@ -602,8 +594,7 @@
602594
template<class Fn, class... ArgTypes>
603595
constexpr bool @\libglobal{is_nothrow_invocable_v}@ = is_nothrow_invocable<Fn, ArgTypes...>::value;
604596
template<class R, class Fn, class... ArgTypes>
605-
constexpr bool is_nothrow_invocable_r_v
606-
= is_nothrow_invocable_r<R, Fn, ArgTypes...>::value;
597+
constexpr bool is_nothrow_invocable_r_v = is_nothrow_invocable_r<R, Fn, ArgTypes...>::value;
607598
template<class Fn, class Tuple>
608599
constexpr bool @\libglobal{is_applicable_v}@ = is_applicable<Fn, Tuple>::value;
609600
template<class Fn, class Tuple>

0 commit comments

Comments
 (0)