Use is_class in is_empty_nonintrinsic.

This commit is contained in:
Ion Gaztañaga
2015-01-18 20:22:22 +01:00
parent 4ef98d900b
commit f21d8f51e7

View File

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