35#ifndef _BLAZE_MATH_CONSTRAINTS_REQUIRESEVALUATION_H_
36#define _BLAZE_MATH_CONSTRAINTS_REQUIRESEVALUATION_H_
61#define BLAZE_CONSTRAINT_MUST_REQUIRE_EVALUATION(T) \
62 static_assert( ::blaze::RequiresEvaluation_v<T>, "Type without evaluation requirement detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_REQUIRE_EVALUATION(T) \
82 static_assert( !::blaze::RequiresEvaluation_v<T>, "Type with evaluation requirement detected" )
Header file for the RequiresEvaluation type trait.