Skip to content

Commit

Permalink
Remove noexcept specifier from defaulted constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
glenfe committed Nov 8, 2015
1 parent 6345313 commit 2d97f75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions doc/align.qbk
Expand Up @@ -670,7 +670,7 @@ public:
typedef aligned_allocator<U, Alignment> other;
};

aligned_allocator() noexcept = default;
aligned_allocator() = default;

template<class U>
aligned_allocator(const aligned_allocator<U, Alignment>&) noexcept;
Expand Down Expand Up @@ -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
Expand All @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion include/boost/align/aligned_allocator.hpp
Expand Up @@ -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 {
}
Expand Down

0 comments on commit 2d97f75

Please sign in to comment.