libstdc++-v3/ChangeLog:
* include/bits/fs_path.h (path::_List::begin, path::_List::end):
Add noexcept to match definitions in src/c++17/fs_path.cc.
// All the member functions below here have a precondition !empty()
// (and they should only be called from within the library).
- iterator begin();
- iterator end();
- const_iterator begin() const;
- const_iterator end() const;
+ iterator begin() noexcept;
+ iterator end() noexcept;
+ const_iterator begin() const noexcept;
+ const_iterator end() const noexcept;
value_type& front() noexcept;
value_type& back() noexcept;