forked from boostorg/smart_ptr
Fix MSVC parsing problem in allocate_shared_array
This commit is contained in:
@ -352,7 +352,7 @@ sp_array_default(T* storage, std::size_t size)
|
||||
template<class T, class U>
|
||||
struct sp_less_align {
|
||||
enum {
|
||||
value = (boost::alignment_of<T>::value <
|
||||
value = ((boost::alignment_of<T>::value) <
|
||||
boost::alignment_of<U>::value)
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user