22 #ifndef _BLAZE_MATH_TYPETRAITS_ISMATMATSUBEXPR_H_
23 #define _BLAZE_MATH_TYPETRAITS_ISMATMATSUBEXPR_H_
30 #include <boost/type_traits/is_base_of.hpp>
50 template<
typename T >
51 struct IsMatMatSubExprHelper
54 enum { value = boost::is_base_of<MatMatSubExpr,T>::value && !boost::is_base_of<T,MatMatSubExpr>::value };
55 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
74 template<
typename T >
80 enum { value = IsMatMatSubExprHelper<T>::value };
81 typedef typename IsMatMatSubExprHelper<T>::Type Type;