35#ifndef _BLAZE_UTIL_TYPETRAITS_ISBASEOF_H_
36#define _BLAZE_UTIL_TYPETRAITS_ISBASEOF_H_
79template<
typename Base,
typename Derived >
81 :
public BoolConstant< std::is_base_of< RemoveCV_t<Base>, RemoveCV_t<Derived> >::value >
99template<
typename Base,
typename Derived >
Header file for the IntegralConstant class template.
Header file for the RemoveCV type trait.
Compile time analysis of an inheritance relationship.
Definition: IsBaseOf.h:82
constexpr bool IsBaseOf_v
Auxiliary variable template for the IsBaseOf type trait.
Definition: IsBaseOf.h:100
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74