Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template inplace_alignment

boost::container::inplace_alignment

Synopsis

// In header: <boost/container/options.hpp>

template<std::size_t Alignment> 
struct inplace_alignment {
};

Description

This option specifies the desired alignment for the value_type stored in the container. A value zero represents the natural alignment.

Template Parameters

  1. std::size_t Alignment

    An unsigned integer value. Must be power of two.


PrevUpHomeNext