MCKL
Monte Carlo Kernel Library
Static Public Attributes | List of all members
mckl::internal::AlignOfImpl< T > Class Template Reference

#include <mckl/core/memory.hpp>

Static Public Attributes

static constexpr std::size_t value
 

Detailed Description

template<typename T>
class mckl::internal::AlignOfImpl< T >

Definition at line 101 of file memory.hpp.

Member Data Documentation

◆ value

template<typename T >
constexpr std::size_t mckl::internal::AlignOfImpl< T >::value
static
Initial value:
= std::is_scalar<T>::value ?
(alignof(T) > 32 ? alignof(T) : 32 ) :
(alignof(T) > 16 ? alignof(T) :
16 )

Definition at line 104 of file memory.hpp.