mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-09-28 00:31:01 +02:00
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>
|
template<class T, class U>
|
||||||
struct sp_less_align {
|
struct sp_less_align {
|
||||||
enum {
|
enum {
|
||||||
value = (boost::alignment_of<T>::value <
|
value = ((boost::alignment_of<T>::value) <
|
||||||
boost::alignment_of<U>::value)
|
boost::alignment_of<U>::value)
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user