35#ifndef _BLAZE_MATH_CONSTRAINTS_COMPOSITETYPE_H_
36#define _BLAZE_MATH_CONSTRAINTS_COMPOSITETYPE_H_
61#define BLAZE_CONSTRAINT_MUST_HAVE_COMPOSITE_TYPE(T) \
62 static_assert( ::blaze::HasCompositeType_v<T>, "Type without composite type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_HAVE_COMPOSITE_TYPE(T) \
82 static_assert( !::blaze::HasCompositeType_v<T>, "Type with composite type detected" )
Header file for the HasCompositeType type trait.