forked from boostorg/move
Use is_class in is_empty_nonintrinsic.
This commit is contained in:
@@ -679,7 +679,7 @@ struct empty_helper_t1 : public T
|
|||||||
|
|
||||||
struct empty_helper_t2 { int i[256]; };
|
struct empty_helper_t2 { int i[256]; };
|
||||||
|
|
||||||
template <typename T, bool IsClass = false>
|
template <typename T, bool IsClass = is_class<T>::value >
|
||||||
struct is_empty_nonintrinsic
|
struct is_empty_nonintrinsic
|
||||||
{
|
{
|
||||||
static const bool value = false;
|
static const bool value = false;
|
||||||
|
Reference in New Issue
Block a user