Fix MSVC parsing problem in allocate_shared_array

This commit is contained in:
Peter Dimov
2017-03-01 12:08:17 +02:00
parent f8524c42a8
commit 1f9c63c34f

View File

@ -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)
};
};