forked from boostorg/type_traits
Changed behaviour of add_pointer with arrays.
[SVN r13241]
This commit is contained in:
@ -175,9 +175,8 @@ struct add_pointer
|
||||
{
|
||||
private:
|
||||
typedef typename remove_reference<T>::type no_ref_type;
|
||||
typedef typename remove_bounds<no_ref_type>::type no_b_type;
|
||||
public:
|
||||
typedef no_b_type* type;
|
||||
typedef no_ref_type* type;
|
||||
};
|
||||
|
||||
} // namespace boost
|
||||
|
Reference in New Issue
Block a user