35#ifndef _BLAZE_UTIL_CONSTRAINTS_GREATERTHAN_H_
36#define _BLAZE_UTIL_CONSTRAINTS_GREATERTHAN_H_
61#define BLAZE_CONSTRAINT_MUST_HAVE_GREATER_THAN_COMPARISON(T1,T2) \
62 static_assert( ::blaze::HasGreaterThan_v<T1,T2>, "Types without greater-than comparison detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_HAVE_GREATER_THAN_COMPARISON(T1,T2) \
82 static_assert( !::blaze::HasGreaterThan_v<T1,T2>, "Type with greater-than comparison detected" )
Header file for the HasGreaterThan type trait.