diff options
author | Abseil Team <absl-team@google.com> | 2018-03-19 11:06:56 -0700 |
---|---|---|
committer | katzdm <katzdm@google.com> | 2018-03-19 15:38:35 -0400 |
commit | 3837bd9aaeeb31aa397eef5fd2784b6674fba207 (patch) | |
tree | ea3938f5e8a24a594291f749df57f6cdfc07ce33 /absl/container | |
parent | eed36bfba04dbe8a08ec72e631c3b337e4f2db11 (diff) |
Changes imported from Abseil "staging" branch:
- 7349efb2d18db3a019034f66502b67f7461c15ae Reword the noexcept specification for InlinedVector's def... by Jon Cohen <cohenjon@google.com>
- f3576b18d039a0c8b533f05ac496fa8d7ff3b207 Remove an unneeded comment in call_once.h by Jon Cohen <cohenjon@google.com>
GitOrigin-RevId: 7349efb2d18db3a019034f66502b67f7461c15ae
Change-Id: I398888e6a82ccd69e23ffc0af9eb198d25e57e02
Diffstat (limited to 'absl/container')
-rw-r--r-- | absl/container/inlined_vector.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index feba87b5..cb36dc75 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -82,8 +82,7 @@ class InlinedVector { using reverse_iterator = std::reverse_iterator<iterator>; using const_reverse_iterator = std::reverse_iterator<const_iterator>; - InlinedVector() noexcept( - std::is_nothrow_default_constructible<allocator_type>::value) + InlinedVector() noexcept(noexcept(allocator_type())) : allocator_and_tag_(allocator_type()) {} explicit InlinedVector(const allocator_type& alloc) noexcept |