From 43aaf5ab736c7464bfeaa8a41b3e9b789cb4f7ff Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 8 Mar 2019 13:56:48 +0000 Subject: [PATCH] Add fixed underlying type to enum path::format * include/bits/fs_path.h (path::format): Add fixed underlying type. From-SVN: r269493 --- libstdc++-v3/ChangeLog | 4 ++++ libstdc++-v3/include/bits/fs_path.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9b876d0..e752285 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2019-03-08 Jonathan Wakely + + * include/bits/fs_path.h (path::format): Add fixed underlying type. + 2019-03-08 François Dumont PR libstdc++/89477 diff --git a/libstdc++-v3/include/bits/fs_path.h b/libstdc++-v3/include/bits/fs_path.h index 077045e..96033f6 100644 --- a/libstdc++-v3/include/bits/fs_path.h +++ b/libstdc++-v3/include/bits/fs_path.h @@ -166,7 +166,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 #endif typedef std::basic_string string_type; - enum format { native_format, generic_format, auto_format }; + enum format : unsigned char { native_format, generic_format, auto_format }; // constructors and destructor -- 2.7.4