35#ifndef _BLAZE_UTIL_CONSTRAINTS_FLOATINGPOINT_H_
36#define _BLAZE_UTIL_CONSTRAINTS_FLOATINGPOINT_H_
61#define BLAZE_CONSTRAINT_MUST_BE_FLOATING_POINT_TYPE(T) \
62 static_assert( ::blaze::IsFloatingPoint_v<T>, "Non-floating point type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_FLOATING_POINT_TYPE(T) \
82 static_assert( !::blaze::IsFloatingPoint_v<T>, "Floating point type detected" )
Header file for the IsFloatingPoint type trait.