Test whether type_name<> compiles for member pointers even without variadic templates. Refs #145.

This commit is contained in:
Peter Dimov 2023-05-21 05:16:30 +03:00
parent 5904fb5636
commit c91f8fabff

View File

@ -249,6 +249,13 @@ int main()
TEST(void(A::*)() volatile);
TEST(void(A::*)() const volatile);
#else
boost::core::type_name<void(A::*)()>();
boost::core::type_name<void(A::*)() const>();
boost::core::type_name<void(A::*)() volatile>();
boost::core::type_name<void(A::*)() const volatile>();
#endif
#if !defined(BOOST_NO_CXX11_REF_QUALIFIERS)