forked from boostorg/type_traits
object_traits.hpp:
- Stateless types must be empty [SVN r12564]
This commit is contained in:
@ -393,7 +393,8 @@ struct is_stateless
|
||||
::boost::has_trivial_constructor<T>::value,
|
||||
::boost::has_trivial_copy<T>::value,
|
||||
::boost::has_trivial_destructor<T>::value,
|
||||
::boost::is_class<T>::value
|
||||
::boost::is_class<T>::value,
|
||||
::boost::is_empty<T>::value
|
||||
>::value));
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user