File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 464
464
enum class forward_progress_guarantee;
465
465
inline constexpr get_forward_progress_guarantee_t get_forward_progress_guarantee{};
466
466
template<class CPO>
467
- inline constexpr get_completion_scheduler_t<CPO> get_completion_scheduler{};
467
+ constexpr get_completion_scheduler_t<CPO> get_completion_scheduler{};
468
468
469
469
struct empty_env {};
470
470
struct get_env_t { @\unspec@ };
550
550
551
551
template<class Sndr, class Env = empty_env>
552
552
requires @\libconcept {sender_in}@<Sndr, Env>
553
- inline constexpr bool sends_stopped = @\seebelow@ ;
553
+ constexpr bool sends_stopped = @\seebelow@ ;
554
554
555
555
template<class Sndr, class Env>
556
556
using @\exposidnc {single-sender-value-type}@ = @\seebelownc@ ; // \expos
4827
4827
4828
4828
template<class Sndr, class Env = empty_env>
4829
4829
requires @\libconcept {sender_in}@<Sndr, Env>
4830
- inline constexpr bool sends_stopped =
4830
+ constexpr bool sends_stopped =
4831
4831
!@\libconcept {same_as}@<@\exposid {type-list}@<>,
4832
4832
@\exposid {gather-signatures}@<set_stopped_t, completion_signatures_of_t<Sndr, Env>,
4833
4833
@\exposid {type-list}@, @\exposid {type-list}@>>;
Original file line number Diff line number Diff line change 10834
10834
of \tcode {enable_nonlocking_formatter_optimization}:
10835
10835
\begin {codeblock }
10836
10836
template<class Rep, class Period>
10837
- inline constexpr bool enable_nonlocking_formatter_optimization<
10837
+ constexpr bool enable_nonlocking_formatter_optimization<
10838
10838
chrono::duration<Rep, Period>> =
10839
10839
enable_nonlocking_formatter_optimization<Rep>;
10840
10840
\end {codeblock }
10845
10845
\tcode {enable_nonlocking_formatter_optimization}:
10846
10846
\begin {codeblock }
10847
10847
template<class Duration>
10848
- inline constexpr bool enable_nonlocking_formatter_optimization<
10848
+ constexpr bool enable_nonlocking_formatter_optimization<
10849
10849
chrono::zoned_time<Duration, const std::chrono::time_zone*>> = true;
10850
10850
\end {codeblock }
10851
10851
Original file line number Diff line number Diff line change 15896
15896
15897
15897
template<ranges::input_range R>
15898
15898
requires (format_kind<R> != range_format::disabled)
15899
- inline constexpr bool enable_nonlocking_formatter_optimization<R> = false;
15899
+ constexpr bool enable_nonlocking_formatter_optimization<R> = false;
15900
15900
15901
15901
// \ref{format.arguments}, arguments
15902
15902
// \ref{format.arg}, class template \tcode{basic_format_arg}
18799
18799
};
18800
18800
18801
18801
template<class... Ts>
18802
- inline constexpr bool enable_nonlocking_formatter_optimization<@\placeholder{pair-or-tuple}@<Ts...>> =
18802
+ constexpr bool enable_nonlocking_formatter_optimization<@\placeholder{pair-or-tuple}@<Ts...>> =
18803
18803
(enable_nonlocking_formatter_optimization<Ts> && ...);
18804
18804
}
18805
18805
\end{codeblock}
You can’t perform that action at this time.
0 commit comments