mirror of
https://github.com/boostorg/core.git
synced 2025-05-09 23:03:54 +00:00
Test whether type_name<> compiles for member pointers even without variadic templates. Refs #145.
This commit is contained in:
parent
5904fb5636
commit
c91f8fabff
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user