mirror of
https://github.com/boostorg/move.git
synced 2025-08-02 13:44:28 +02:00
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]; };
|
||||
|
||||
template <typename T, bool IsClass = false>
|
||||
template <typename T, bool IsClass = is_class<T>::value >
|
||||
struct is_empty_nonintrinsic
|
||||
{
|
||||
static const bool value = false;
|
||||
|
Reference in New Issue
Block a user