35#ifndef _BLAZE_MATH_CONSTRAINTS_RESULTTYPE_H_
36#define _BLAZE_MATH_CONSTRAINTS_RESULTTYPE_H_
61#define BLAZE_CONSTRAINT_MUST_HAVE_RESULT_TYPE(T) \
62 static_assert( ::blaze::HasResultType_v<T>, "Type without result type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_HAVE_RESULT_TYPE(T) \
82 static_assert( !::blaze::HasResultType_v<T>, "Type with result type detected" )
Header file for the HasResultType type trait.