commit 43ab1dc24abd6fded8d5bf6547f0de6851beb200 Author: Jonathan Wakely Date: Thu Apr 8 10:50:57 2021 libstdc++: Make std::is_scoped_enum work with incomplete types Tim Song pointed out that using __underlying_type is ill-formed for incomplete enumeration types, and is_scoped_enum doesn't require a complete type. This changes the trait to check for conversion to int instead of to the underlying type. In order to give the correct result when the trait is used in the enumerator-list of an incomplete type the partial specialization for enums has an additional check that fails for incomplete types. This assumes that an incompelte enumeration type must be an unscoped enumeration, and so the primary template (with a std::false_type base characteristic) can be used. This isn't necessarily true, but it is not currently possible to refer to a scoped enumeration type before its type is complete (PR c++/89025). It should be possible to use requires(remove_cv_t<_Tp> __t) in the partial specialization's assignablility check, but that currently gives an ICE (PR c++/99968) so there is an extra partial specialization of is_scoped_enum to handle const types. libstdc++-v3/ChangeLog: * include/std/type_traits (is_scoped_enum): Constrain partial specialization to not match incomplete enum types. Use a requires-expression instead of instantiating is_convertible. (is_scoped_enum): Add as workaround for PR c++/99968. * testsuite/20_util/is_scoped_enum/value.cc: Check with incomplete types and opaque-enum-declarations. diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits index eeab1ca65fc..1f8b57b04a0 100644 --- a/libstdc++-v3/include/std/type_traits +++ b/libstdc++-v3/include/std/type_traits @@ -3287,9 +3287,20 @@ template : false_type { }; - template requires __is_enum(_Tp) + template + requires __is_enum(_Tp) + && requires(_Tp __t) { __t = __t; } // fails if incomplete struct is_scoped_enum<_Tp> - : __not_>::type + : bool_constant + { }; + + // FIXME remove this partial specialization and use remove_cv_t<_Tp> above + // when PR c++/99968 is fixed. + template + requires __is_enum(_Tp) + && requires(_Tp __t) { __t = __t; } // fails if incomplete + struct is_scoped_enum + : bool_constant { }; template diff --git a/libstdc++-v3/testsuite/20_util/is_scoped_enum/value.cc b/libstdc++-v3/testsuite/20_util/is_scoped_enum/value.cc index bab7263ae4a..2cef857a042 100644 --- a/libstdc++-v3/testsuite/20_util/is_scoped_enum/value.cc +++ b/libstdc++-v3/testsuite/20_util/is_scoped_enum/value.cc @@ -32,6 +32,8 @@ template concept Is_scoped_enum = __gnu_test::test_category(true); +struct Incomplete_struct; + void test01() { @@ -45,6 +47,9 @@ test01() static_assert( ! Is_scoped_enum ); enum F : int { f1, f2 }; static_assert( ! Is_scoped_enum ); + static_assert( ! Is_scoped_enum ); + struct S; + static_assert( ! Is_scoped_enum ); struct S { }; static_assert( ! Is_scoped_enum ); @@ -60,3 +65,36 @@ test01() static_assert( ! Is_scoped_enum ); static_assert( ! Is_scoped_enum ); } + +enum opaque_unscoped : short; +enum class opaque_scoped; +enum class opaque_scoped_with_base : long; + +static_assert( ! Is_scoped_enum ); +static_assert( Is_scoped_enum ); +static_assert( Is_scoped_enum ); + +void +test02() +{ + enum unscoped { + u_is_enum = std::is_enum_v, + u_is_scoped = std::is_scoped_enum_v, + }; + static_assert( unscoped::u_is_enum ); + static_assert( ! unscoped::u_is_scoped ); + + enum unscoped_fixed : char { + uf_is_enum = std::is_enum_v, + uf_is_scoped = std::is_scoped_enum_v, + }; + static_assert( unscoped_fixed::uf_is_enum); + static_assert( ! unscoped_fixed::uf_is_scoped ); + + enum class scoped { + is_enum = std::is_enum_v, + is_scoped = std::is_scoped_enum_v, + }; + static_assert( (bool) scoped::is_enum ); + static_assert( (bool) scoped::is_scoped ); +}