The Gaudi Framework  v33r1 (b1225454)
Gaudi::Arena::details Namespace Reference

Functions

template<std::size_t Alignment>
constexpr std::size_t align_up (std::size_t n)
 

Function Documentation

◆ align_up()

template<std::size_t Alignment>
constexpr std::size_t Gaudi::Arena::details::align_up ( std::size_t  n)

Definition at line 24 of file Monotonic.h.

24  {
25  return ( n + ( Alignment - 1 ) ) & ~( Alignment - 1 );
26  }