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

alignof

Header <boost/core/alignof.hpp>

Authors

  • Peter Dimov

The header <boost/core/alignof.hpp> defines the macro BOOST_CORE_ALIGNOF, a portable equivalent of the alignof operator from C++11.

#include <boost/core/alignof.hpp>
#include <cstddef>

constexpr std::size_t alignment_of_double = BOOST_CORE_ALIGNOF(double);

PrevUpHomeNext