[#boost-urls-grammar-aligned_storage] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/grammar.adoc[grammar]::aligned_storage :relfileprefix: ../../../ :mrdocs: Provides an aligned storage buffer aligned for T == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/recycled.hpp#L43[boost/url/grammar/recycled.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- 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 [,cpp] ---- template 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; }; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#