File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 286
286
287
287
template<class InputIterator, class NoThrowForwardIterator>
288
288
constexpr NoThrowForwardIterator uninitialized_move(InputIterator first, // freestanding
289
- InputIterator last,
290
- NoThrowForwardIterator result);
289
+ InputIterator last,
290
+ NoThrowForwardIterator result);
291
291
template<class ExecutionPolicy, class ForwardIterator, class NoThrowForwardIterator>
292
292
NoThrowForwardIterator uninitialized_move(ExecutionPolicy&& exec, // see \ref {algorithms.parallel.overloads }
293
293
ForwardIterator first, ForwardIterator last,
327
327
328
328
template<class NoThrowForwardIterator, class T>
329
329
constexpr void uninitialized_fill(NoThrowForwardIterator first, // freestanding
330
- NoThrowForwardIterator last, const T& x);
330
+ NoThrowForwardIterator last, const T& x);
331
331
template<class ExecutionPolicy, class NoThrowForwardIterator, class T>
332
332
void uninitialized_fill(ExecutionPolicy&& exec, // see \ref {algorithms.parallel.overloads }
333
333
NoThrowForwardIterator first, NoThrowForwardIterator last,
You can’t perform that action at this time.
0 commit comments