35#ifndef _BLAZE_MATH_CONSTRAINTS_SIMDCOMBINABLE_H_
36#define _BLAZE_MATH_CONSTRAINTS_SIMDCOMBINABLE_H_
61#define BLAZE_CONSTRAINT_MUST_BE_SIMD_COMBINABLE_TYPES(T1,T2) \
62 static_assert( ::blaze::IsSIMDCombinable_v<T1,T2>, "Non-SIMD combinable types detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_SIMD_COMBINABLE_TYPES(T1,T2) \
82 static_assert( !::blaze::IsSIMDCombinable_v<T1,T2>, "SIMD combinable types detected" )
Header file for the IsSIMDCombinable type trait.