libstdc++: Partially revert r11-9772-g6f8133689f4397 [PR105915]

The r11-9772-g6f8133689f4397 backport made two changes, but only one was
needed on the gcc-11 branch. The other should not have been backported,
and causes errors with clang. This removes the unwanted part.

libstdc++-v3/ChangeLog:

	PR libstdc++/105915
	* include/experimental/bits/fs_path.h (path::begin, path::end):
	Remove noexcept from declarations.
This commit is contained in:
Jonathan Wakely 2022-06-10 13:01:16 +01:00
parent dd1b31d231
commit 60c8470703
1 changed files with 2 additions and 2 deletions

View File

@ -425,8 +425,8 @@ namespace __detail
class iterator;
typedef iterator const_iterator;
iterator begin() const noexcept;
iterator end() const noexcept;
iterator begin() const;
iterator end() const;
/// @cond undocumented
// Create a basic_string by reading until a null character.