Commit 43aaf5ab by Jonathan Wakely Committed by Jonathan Wakely

Add fixed underlying type to enum path::format

	* include/bits/fs_path.h (path::format): Add fixed underlying type.

From-SVN: r269493
parent f62d3527
2019-03-08 Jonathan Wakely <jwakely@redhat.com>
* include/bits/fs_path.h (path::format): Add fixed underlying type.
2019-03-08 François Dumont <fdumont@gcc.gnu.org>
PR libstdc++/89477
......
......@@ -166,7 +166,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
#endif
typedef std::basic_string<value_type> string_type;
enum format { native_format, generic_format, auto_format };
enum format : unsigned char { native_format, generic_format, auto_format };
// constructors and destructor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment