35 #ifndef _BLAZE_MATH_TYPETRAITS_ISALIGNED_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISALIGNED_H_
86 template<
typename T >
105 template<
typename T >
111 typedef typename IsAligned<T>::Type Type;
123 template<
typename T >
124 struct IsAligned< volatile T > :
public IsAligned<T>::Type
128 enum { value = IsAligned<T>::value };
129 typedef typename IsAligned<T>::Type Type;
141 template<
typename T >
142 struct IsAligned< const volatile T > :
public IsAligned<T>::Type
146 enum { value = IsAligned<T>::value };
147 typedef typename IsAligned<T>::Type Type;
Header file for the FalseType type/value trait base class.
Compile time check for the alignment of data types.This type trait tests whether the given data type ...
Definition: IsAligned.h:87
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
boost::false_type FalseType
Type/value traits base class.The FalseType class is used as base class for type traits and value trai...
Definition: FalseType.h:61
Header file for the TrueType type/value trait base class.