35#ifndef _BLAZE_UTIL_CONSTRAINTS_LONGDOUBLE_H_
36#define _BLAZE_UTIL_CONSTRAINTS_LONGDOUBLE_H_
62#define BLAZE_CONSTRAINT_MUST_BE_LONGDOUBLE_TYPE(T) \
63 static_assert( ::blaze::IsLongDouble_v<T>, "Non-long double type detected" )
83#define BLAZE_CONSTRAINT_MUST_NOT_BE_LONGDOUBLE_TYPE(T) \
84 static_assert( !::blaze::IsLongDouble_v<T>, "Long double type detected" )
Header file for the IsLongDouble type trait.