Skip to content

Commit 3e4ebec

Browse files
authored
[memory.syn] Fix indentation (#7613)
1 parent cae9b2a commit 3e4ebec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/memory.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@
286286

287287
template<class InputIterator, class NoThrowForwardIterator>
288288
constexpr NoThrowForwardIterator uninitialized_move(InputIterator first, // freestanding
289-
InputIterator last,
290-
NoThrowForwardIterator result);
289+
InputIterator last,
290+
NoThrowForwardIterator result);
291291
template<class ExecutionPolicy, class ForwardIterator, class NoThrowForwardIterator>
292292
NoThrowForwardIterator uninitialized_move(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
293293
ForwardIterator first, ForwardIterator last,
@@ -327,7 +327,7 @@
327327

328328
template<class NoThrowForwardIterator, class T>
329329
constexpr void uninitialized_fill(NoThrowForwardIterator first, // freestanding
330-
NoThrowForwardIterator last, const T& x);
330+
NoThrowForwardIterator last, const T& x);
331331
template<class ExecutionPolicy, class NoThrowForwardIterator, class T>
332332
void uninitialized_fill(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
333333
NoThrowForwardIterator first, NoThrowForwardIterator last,

0 commit comments

Comments
 (0)