about summary refs log tree commit diff
path: root/absl
diff options
context:
space:
mode:
Diffstat (limited to 'absl')
-rw-r--r--absl/base/call_once.h1
-rw-r--r--absl/container/inlined_vector.h3
2 files changed, 1 insertions, 3 deletions
diff --git a/absl/base/call_once.h b/absl/base/call_once.h
index 25c783e5f3e0..b5fbeae5858c 100644
--- a/absl/base/call_once.h
+++ b/absl/base/call_once.h
@@ -43,7 +43,6 @@ namespace absl {
 class once_flag;
 
 namespace base_internal {
-// Implementation detail.
 std::atomic<uint32_t>* ControlWord(absl::once_flag* flag);
 }  // namespace base_internal
 
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h
index feba87b58217..cb36dc756dfb 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