35#ifndef _BLAZE_MATH_TYPETRAITS_ISALIGNED_H_
36#define _BLAZE_MATH_TYPETRAITS_ISALIGNED_H_
110template<
typename T >
111struct IsAligned< volatile T >
112 :
public IsAligned<T>
123template<
typename T >
124struct IsAligned< const volatile T >
125 :
public IsAligned<T>
144template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsAligned_v
Auxiliary variable template for the IsAligned type trait.
Definition: IsAligned.h:145
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for the alignment of data types.
Definition: IsAligned.h:88