Skip to content

Commit

Permalink
[memory.syn] Fix indentation (#7613)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas-Krug authored Feb 4, 2025
1 parent cae9b2a commit 3e4ebec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/memory.tex
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@

template<class InputIterator, class NoThrowForwardIterator>
constexpr NoThrowForwardIterator uninitialized_move(InputIterator first, // freestanding
InputIterator last,
NoThrowForwardIterator result);
InputIterator last,
NoThrowForwardIterator result);
template<class ExecutionPolicy, class ForwardIterator, class NoThrowForwardIterator>
NoThrowForwardIterator uninitialized_move(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
ForwardIterator first, ForwardIterator last,
Expand Down Expand Up @@ -327,7 +327,7 @@

template<class NoThrowForwardIterator, class T>
constexpr void uninitialized_fill(NoThrowForwardIterator first, // freestanding
NoThrowForwardIterator last, const T& x);
NoThrowForwardIterator last, const T& x);
template<class ExecutionPolicy, class NoThrowForwardIterator, class T>
void uninitialized_fill(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
NoThrowForwardIterator first, NoThrowForwardIterator last,
Expand Down

0 comments on commit 3e4ebec

Please sign in to comment.