forked from boostorg/core
Test whether type_name<> compiles for member pointers even without variadic templates. Refs #145.
This commit is contained in:
@@ -249,6 +249,13 @@ int main()
|
|||||||
TEST(void(A::*)() volatile);
|
TEST(void(A::*)() volatile);
|
||||||
TEST(void(A::*)() const 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
|
#endif
|
||||||
|
|
||||||
#if !defined(BOOST_NO_CXX11_REF_QUALIFIERS)
|
#if !defined(BOOST_NO_CXX11_REF_QUALIFIERS)
|
||||||
|
Reference in New Issue
Block a user