diff --git a/doc/align.qbk b/doc/align.qbk index fef4bc7..de3a0d7 100644 --- a/doc/align.qbk +++ b/doc/align.qbk @@ -670,7 +670,7 @@ public: typedef aligned_allocator other; }; - aligned_allocator() noexcept = default; + aligned_allocator() = default; template aligned_allocator(const aligned_allocator&) noexcept; @@ -1309,8 +1309,8 @@ library collection. [heading Library Reviews] -The following developers reviewed the design, code, examples, tests, -and documentation. +Thank you to the following developers who reviewed the design, code, +examples, tests, or documentation. * Peter Dimov * Andrey Semashev @@ -1323,8 +1323,8 @@ and documentation. [heading Review Manager] -Ahmed Charles generously served as review manager for the formal review -of the library. +Thank you to Ahmed Charles who served as review manager for the formal +review of the library. [endsect] diff --git a/include/boost/align/aligned_allocator.hpp b/include/boost/align/aligned_allocator.hpp index 1e980b8..9655e3d 100644 --- a/include/boost/align/aligned_allocator.hpp +++ b/include/boost/align/aligned_allocator.hpp @@ -57,7 +57,7 @@ class aligned_allocator { }; #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) - aligned_allocator() BOOST_NOEXCEPT = default; + aligned_allocator() = default; #else aligned_allocator() BOOST_NOEXCEPT { }