35#ifndef _BLAZE_UTIL_CONSTRAINTS_RVALUEREFERENCE_H_
36#define _BLAZE_UTIL_CONSTRAINTS_RVALUEREFERENCE_H_
61#define BLAZE_CONSTRAINT_MUST_BE_RVALUE_REFERENCE_TYPE(T) \
62 static_assert( ::blaze::IsRValueReference_v<T>, "Non-rvalue reference type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_RVALUE_REFERENCE_TYPE(T) \
82 static_assert( !::blaze::IsRValueReference_v<T>, "Rvalue reference type detected" )
Header file for the IsRValueReference type trait.