File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
include/beman/inplace_vector Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -478,13 +478,13 @@ struct inplace_vector
478478 // constexpr ~inplace_vector();
479479 // from base-class, trivial if is_trivially_destructible_v<T> &&
480480 // is_trivially_copy_assignable_v<T>
481- // constexpr inplace_vector& operator=(const inplace_vector& __other );
481+ // constexpr inplace_vector& operator=(const inplace_vector& other );
482482 // from base-class, trivial if is_trivially_destructible_v<T> &&
483483 // is_trivially_copy_assignable_v<T>
484- // constexpr inplace_vector& operator=(inplace_vector&& __other )
484+ // constexpr inplace_vector& operator=(inplace_vector&& other )
485485 // noexcept(N == 0 || is_nothrow_move_assignable_v<T>);
486486 // template <class InputIterator> // BUGBUG: why not model input_iterator
487- // constexpr void assign(InputIterator first, InputIterator l__ast );
487+ // constexpr void assign(InputIterator first, InputIterator last );
488488 // template<details::inplace_vector::container_compatible_range<T> R>
489489 // constexpr void assign_range(R&& rg);
490490 // constexpr void assign(size_type n, const T& u);
You can’t perform that action at this time.
0 commit comments