boost::urls::grammar::aligned_storage

Provides an aligned storage buffer aligned for T

Synopsis

template<class T>
using aligned_storage = /* implementation-defined */::aligned_storage_impl<implementation_defined::nearest_pow2(sizeof(T), 64), (alignof(::max_align_t) > alignof(T)) ? alignof(::max_align_t) : alignof(T)>;

Description

template<class T>
struct aligned_storage
{
    /// Return a pointer to the aligned storage area
    void* addr() noexcept;

    /// Return a pointer to the aligned storage area
    void const* addr() const noexcept;
};

Created with MrDocs