35#ifndef _BLAZE_UTIL_CONSTRAINTS_COMPLEXFLOAT_H_
36#define _BLAZE_UTIL_CONSTRAINTS_COMPLEXFLOAT_H_
62#define BLAZE_CONSTRAINT_MUST_BE_COMPLEX_FLOAT_TYPE(T) \
63 static_assert( ::blaze::IsComplexFloat_v<T>, "Non-single precision complex type detected" )
83#define BLAZE_CONSTRAINT_MUST_NOT_BE_COMPLEX_FLOAT_TYPE(T) \
84 static_assert( !::blaze::IsComplexFloat_v<T>, "Single precision complex type detected" )
Header file for the IsComplexFloat type trait.