libs/python/test/pointer_type_id_test.cpp
#include <boost/python/type_id.hpp> #include <cassert> #include <boost/python/converter/pointer_type_id.hpp> int main() { using namespace boost::python::converter; boost::python::type_info x = boost::python::type_id<int>(); assert(pointer_type_id<int*>() == x); assert(pointer_type_id<int const*>() == x); assert(pointer_type_id<int volatile*>() == x); assert(pointer_type_id<int const volatile*>() == x); assert(pointer_type_id<int*&>() == x); assert(pointer_type_id<int const*&>() == x); assert(pointer_type_id<int volatile*&>() == x); assert(pointer_type_id<int const volatile*&>() == x); assert(pointer_type_id<int*const&>() == x); assert(pointer_type_id<int const*const&>() == x); assert(pointer_type_id<int volatile*const&>() == x); assert(pointer_type_id<int const volatile*const&>() == x); assert(pointer_type_id<int*volatile&>() == x); assert(pointer_type_id<int const*volatile&>() == x); assert(pointer_type_id<int volatile*volatile&>() == x); assert(pointer_type_id<int const volatile*volatile&>() == x); assert(pointer_type_id<int*const volatile&>() == x); assert(pointer_type_id<int const*const volatile&>() == x); assert(pointer_type_id<int volatile*const volatile&>() == x); assert(pointer_type_id<int const volatile*const volatile&>() == x); return 0; }