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 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,
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,
You can’t perform that action at this time.
0 commit comments