mirror of
https://github.com/boostorg/python.git
synced 2026-01-28 07:22:31 +00:00
moved indirect_traits to boost/detail
[SVN r25127]
This commit is contained in:
@@ -37,9 +37,9 @@ inline decorated_type_info decorated_type_id(boost::type<T>* = 0)
|
||||
return decorated_type_info(
|
||||
type_id<T>()
|
||||
, decorated_type_info::decoration(
|
||||
(is_const<T>::value || python::detail::is_reference_to_const<T>::value
|
||||
(is_const<T>::value || indirect_traits::is_reference_to_const<T>::value
|
||||
? decorated_type_info::const_ : 0)
|
||||
| (is_volatile<T>::value || python::detail::is_reference_to_volatile<T>::value
|
||||
| (is_volatile<T>::value || indirect_traits::is_reference_to_volatile<T>::value
|
||||
? decorated_type_info::volatile_ : 0)
|
||||
| (is_reference<T>::value ? decorated_type_info::reference : 0)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user