35#ifndef _BLAZE_UTIL_CONSTRAINTS_CONVERTIBLE_H_
36#define _BLAZE_UTIL_CONSTRAINTS_CONVERTIBLE_H_
60#define BLAZE_CONSTRAINT_MUST_BE_CONVERTIBLE(FROM,TO) \
61 static_assert( ::blaze::IsConvertible_v<FROM,TO>, "Inconvertible type detected" )
79#define BLAZE_CONSTRAINT_MUST_NOT_BE_CONVERTIBLE(FROM,TO) \
80 static_assert( !::blaze::IsConvertible_v<FROM,TO>, "Convertible type detected" )
Header file for the IsConvertible type trait.